Code/Entities/Puzzle/Dashboard/PuzzleDashboard.cs

A simple data model representing a puzzle dashboard. It stores Days, a GlobalPuzzlePerformance object, and a dictionary of theme name to PuzzleTheme.

#nullable enable annotations

namespace LichessNET.Entities.Puzzle.Dashboard;

public class PuzzleDashboard
{
    public int Days { get; set; }
    public GlobalPuzzlePerformance Global { get; set; }
    public Dictionary<string, PuzzleTheme> Themes { get; set; }
}