Entities/Puzzle/PuzzleStorm/StormDashboard.cs

Simple data model for a Puzzle Storm dashboard. It defines a StormDashboard class with two properties: a list of StormDay objects 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; }
}