Code/Entities/Puzzle/PuzzleStorm/StormDashboard.cs

A simple data model class for the Puzzle Storm feature. It defines two public properties: a list of StormDay objects named Days, and a StormHigh object named High.

#nullable enable annotations

namespace LichessNET.Entities.Puzzle.PuzzleStorm;

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