Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PartItem.cs
2{
9 public class PartItem(string LegalId, string Jid, string FriendlyName)
10 {
11 private readonly string legalId = LegalId;
12 private readonly string jid = Jid;
13 private readonly string friendlyName = FriendlyName;
14
18 public string LegalId => this.legalId;
19
23 public string Jid => this.jid;
24
28 public string FriendlyName => this.friendlyName;
29 }
30}
class PartItem(string LegalId, string Jid, string FriendlyName)
Represents a part related to a token.
Definition: PartItem.cs:9