Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ContractSignature.cs
3
5{
9 [CollectionName("ContractSignatures")]
10 [TypeName(TypeNameSerialization.None)]
11 [ArchivingTime]
12 [Index("ContractId", "LegalId")]
13 [Index("LegalId", "ContractId")]
14 [Index("BareJid", "LegalId", "ContractId")]
16 {
17 private string objectId = null;
18 private CaseInsensitiveString contractId = null;
19 private CaseInsensitiveString legalId = null;
20 private CaseInsensitiveString bareJid = null;
21
22 public ContractSignature()
23 {
24 }
25
29 [ObjectId]
30 public string ObjectId
31 {
32 get => this.objectId;
33 set => this.objectId = value;
34 }
35
40 {
41 get => this.contractId;
42 set => this.contractId = value;
43 }
44
49 {
50 get => this.legalId;
51 set => this.legalId = value;
52 }
53
58 {
59 get => this.bareJid;
60 set => this.bareJid = value;
61 }
62 }
63}
Represents a case-insensitive string.
TypeNameSerialization
How the type name should be serialized.