Simple data model for an arena performance entry in a tournament. It defines 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; }
}