A simple data model representing a puzzle dashboard, containing an integer Days, a GlobalPuzzlePerformance object Global, 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; }
}