A simple data model representing a puzzle theme in a dashboard. It holds a PuzzleResults object and a theme name string.
#nullable enable annotations
namespace LichessNET.Entities.Puzzle.Dashboard;
public class PuzzleTheme
{
public PuzzleResults Results { get; set; }
public string ThemeName { get; set; }
}