Entities/Tournament/Arena/MinRatedGames.cs

Simple data model representing a tournament arena minimum rated games requirement. It has a single integer property Nb that holds the number of games.

#nullable enable annotations

namespace LichessNET.Entities.Tournament.Arena;

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