Entities/Tournament/Swiss/SwissTournamentStats.cs

Plain data model for Swiss tournament statistics in the LichessNET.Entities.Tournament namespace. It defines an immutable-looking class with integer properties for counts like Absences, AverageRating, BlackWins, Byes, Draws, Games, and WhiteWins.

#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; }
}