Entity classes for tournament Swiss verdicts. Verdicts holds a boolean Accepted and a list of VerdictEntity objects. VerdictEntity holds Condition and Verdict strings.
#nullable enable annotations
namespace LichessNET.Entities.Tournament;
public class Verdicts
{
public bool Accepted { get; set; }
public List<VerdictEntity> List { get; set; }
}
public class VerdictEntity
{
public string Condition { get; set; }
public string Verdict { get; set; }
}