Code/Entities/Puzzle/Dashboard/PuzzleDashboard.cs

A simple data model class for a puzzle dashboard. It stores an integer Days, a GlobalPuzzlePerformance object in Global, and a dictionary of theme name to PuzzleTheme in Themes.

#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; }
}