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