Plain data model for puzzle storm scores. Declares a POCO StormHigh with integer properties AllTime, Day, Month, and Week.
#nullable enable annotations
namespace LichessNET.Entities.Puzzle.PuzzleStorm;
public class StormHigh
{
public int AllTime { get; set; }
public int Day { get; set; }
public int Month { get; set; }
public int Week { get; set; }
}