mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-07 07:53:05 +00:00
22 lines
466 B
C#
22 lines
466 B
C#
using Utils;
|
|
|
|
namespace DiscordRewards
|
|
{
|
|
public class CheckConfig
|
|
{
|
|
public CheckType Type { get; set; }
|
|
public ulong MinNumberOfHosts { get; set; }
|
|
public ByteSize MinSlotSize { get; set; } = 0.Bytes();
|
|
public TimeSpan MinDuration { get; set; } = TimeSpan.Zero;
|
|
}
|
|
|
|
public enum CheckType
|
|
{
|
|
Uninitialized,
|
|
FilledSlot,
|
|
FinishedSlot,
|
|
PostedContract,
|
|
StartedContract,
|
|
}
|
|
}
|