RunLedgerEntry.cs
1 using System.Collections.Immutable; 2 using GUNRPG.Security; 3 4 namespace GUNRPG.Ledger; 5 6 public record RunLedgerEntry( 7 long Index, 8 ImmutableArray<byte> PreviousHash, 9 ImmutableArray<byte> EntryHash, 10 DateTimeOffset Timestamp, 11 RunValidationResult Run);