Code/Entities/Puzzle/Dashboard/PuzzleTheme.cs

Simple data model representing a puzzle dashboard theme, holding a PuzzleResults instance 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; }
}