Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AlternativeField.cs
2
4{
8 [TypeName(TypeNameSerialization.None)]
9 public class AlternativeField
10 {
15 {
16 }
17
23 public AlternativeField(string Key, string Value)
24 {
25 this.Key = Key;
26 this.Value = Value;
27 }
28
32 [DefaultValueStringEmpty]
33 public string Key = string.Empty;
34
38 [DefaultValueStringEmpty]
39 public string Value = string.Empty;
40 }
41}
Represents an alternative field in a legal identity.
AlternativeField()
Represents an alternative field in a legal identity.
AlternativeField(string Key, string Value)
Represents an alternative field in a legal identity.
string Value
Alternative field Value.
string Key
Alternative field name.
TypeNameSerialization
How the type name should be serialized.