POCO representing statistics for a Swiss-format tournament. It holds integer counts like absences, average rating, wins by color, byes, draws and total games.
#nullable enable annotations
namespace LichessNET.Entities.Tournament;
public class SwissTournamentStats
{
public int Absences { get; set; }
public int AverageRating { get; set; }
public int BlackWins { get; set; }
public int Byes { get; set; }
public int Draws { get; set; }
public int Games { get; set; }
public int WhiteWins { get; set; }
}