Entities/Puzzle/PuzzleStorm/StormDashboard.cs

Simple data model for a PuzzleStorm dashboard, containing a list of StormDay objects and a StormHigh summary.

#nullable enable annotations

namespace LichessNET.Entities.Puzzle.PuzzleStorm;

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