Simple data model for a puzzle race entity. Declares class PuzzleRace with two public 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; }
}