mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-13 20:46:37 +00:00
22 lines
486 B
C#
22 lines
486 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,
|
|
HostFilledSlot,
|
|
HostFinishedSlot,
|
|
ClientPostedContract,
|
|
ClientStartedContract,
|
|
}
|
|
}
|