Simple data model for an arena performance category. Declares a POCO ArenaPerf with string properties Key, Name, Icon and an int Position.
#nullable enable annotations
namespace LichessNET.Entities.Tournament.Arena;
public class ArenaPerf
{
public string Key { get; set; }
public string Name { get; set; }
public int Position { get; set; }
public string Icon { get; set; }
}