Simple data class representing a minimum-rated-games requirement for a tournament arena, with a single integer property Nb.
#nullable enable annotations
namespace LichessNET.Entities.Tournament.Arena;
public class MinRatedGames
{
public int Nb { get; set; }
}