Entities/Tournament/Arena/ArenaPerf.cs

Simple data model representing arena performance metadata for a tournament. It declares properties Key, Name, Position, and Icon.

#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; }
}