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