mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 13:33:07 +00:00
20 lines
426 B
C#
20 lines
426 B
C#
namespace BlockchainUtils
|
|
{
|
|
public class BlockTimeEntry
|
|
{
|
|
public BlockTimeEntry(ulong blockNumber, DateTime utc)
|
|
{
|
|
BlockNumber = blockNumber;
|
|
Utc = utc;
|
|
}
|
|
|
|
public ulong BlockNumber { get; }
|
|
public DateTime Utc { get; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"[{BlockNumber}] @ {Utc.ToString("o")}";
|
|
}
|
|
}
|
|
}
|