Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ObjectState.cs
3
5{
9 [TypeName(TypeNameSerialization.FullName)]
10 public class ObjectState
11 {
12 private EntryType type;
13 private GenericObject obj;
14
18 public ObjectState()
19 {
20 }
21
28 {
29 this.type = Type;
30 this.obj = Object;
31 }
32
37 {
38 get => this.type;
39 set => this.type = value;
40 }
41
46 {
47 get => this.obj;
48 set => this.obj = value;
49 }
50 }
51}
Represents an object state.
Definition: ObjectState.cs:11
ObjectState()
Represents an object state.
Definition: ObjectState.cs:18
ObjectState(EntryType Type, GenericObject Object)
Represents an object state.
Definition: ObjectState.cs:27
Generic object. Contains a sequence of properties.
TypeNameSerialization
How the type name should be serialized.
EntryType
Ledger entry type.
Definition: ILedgerEntry.cs:9