Simple data model for a Lichess puzzle race, containing two string properties Id and Url.
#nullable enable annotations
namespace LichessNET.Entities.Puzzle;
public class PuzzleRace
{
public string Id { get; set; }
public string Url { get; set; }
}