Simple data model for a tournament arena schedule. It defines two string properties, Freq and Speed, likely representing frequency and game speed.
#nullable enable annotations
namespace LichessNET.Entities.Tournament.Arena;
public class Schedule
{
public string Freq { get; set; }
public string Speed { get; set; }
}