Code/Entities/Puzzle/PuzzleStorm/StormDashboard.cs

A simple data model class for the PuzzleStorm feature, representing a dashboard that contains a list of StormDay entries and a StormHigh object.

#nullable enable annotations

namespace LichessNET.Entities.Puzzle.PuzzleStorm;

public class StormDashboard
{
    public List<StormDay> Days { get; set; }
    public StormHigh High { get; set; }
}