Code/Entities/Tournament/Arena/MinRatedGames.cs

A simple data class in the LichessNET.Entities.Tournament.Arena namespace representing a minimum-rated-games value, with a single integer property Nb.

#nullable enable annotations

namespace LichessNET.Entities.Tournament.Arena;

public class MinRatedGames
{
    public int Nb { get; set; }
}