Code/Entities/Puzzle/PuzzleRace.cs

A simple data model for a puzzle race. It declares a PuzzleRace class with two public string properties, Id and Url, likely used to store an identifier and a link for a puzzle race.

#nullable enable annotations

namespace LichessNET.Entities.Puzzle;

public class PuzzleRace
{
    public string Id { get; set; }
    public string Url { get; set; }
}