Simple data model for a puzzle race entity. It declares a PuzzleRace class 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; }
}