Small data class in the tournament arena namespace. It defines MinRatedGames with a single integer property Nb.
#nullable enable annotations
namespace LichessNET.Entities.Tournament.Arena;
public class MinRatedGames
{
public int Nb { get; set; }
}