Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ILedgerEntry.cs
1using System;
2
3namespace Waher.Persistence
4{
8 public enum EntryType
9 {
13 New = 1,
14
18 Update = 2,
19
23 Delete = 3,
24
28 Clear = 4
29 }
30
35 public interface ILedgerEntry<T>
36 {
41 {
42 get;
43 }
44
48 DateTimeOffset EntryTimestamp
49 {
50 get;
51 }
52
57 {
58 get;
59 }
60 }
61}
Interface for ledger entries.
Definition: ILedgerEntry.cs:36
DateTimeOffset EntryTimestamp
Timestamp of entry
Definition: ILedgerEntry.cs:49
T Object
Entry
Definition: ILedgerEntry.cs:57
EntryType
Ledger entry type.
Definition: ILedgerEntry.cs:9