Data model for tournament Swiss verdicts. Defines Verdicts containing an Accepted flag and a list of VerdictEntity, and VerdictEntity with 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; }
}