Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
RemoteIdentityReference.cs
1using System;
4
6{
11 [TypeName(TypeNameSerialization.None)]
12 [CollectionName("RemoteIdentityReferences")]
13 [Index("Account", "RemoteDomain")]
14 [Index("LegalId")]
16 {
17 private string objectId = null;
18 private CaseInsensitiveString legalId = null;
19 private CaseInsensitiveString remoteDomain = null;
20 private CaseInsensitiveString account = null;
21
27 {
28 }
29
30 [ObjectId]
31 public string ObjectId
32 {
33 get => this.objectId;
34 set => this.objectId = value;
35 }
36
41 {
42 get => this.legalId;
43 set => this.legalId = value;
44 }
45
50 {
51 get => this.remoteDomain;
52 set => this.remoteDomain = value;
53 }
54
59 {
60 get => this.account;
61 set => this.account = value;
62 }
63 }
64}
Represents a case-insensitive string.
TypeNameSerialization
How the type name should be serialized.