2024-01-29 16:02:47 +00:00
|
|
|
|
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,
|
2024-06-17 13:34:08 +00:00
|
|
|
|
HostFilledSlot,
|
|
|
|
|
HostFinishedSlot,
|
|
|
|
|
ClientPostedContract,
|
|
|
|
|
ClientStartedContract,
|
2024-01-29 16:02:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|