A simple data model class representing puzzle storm ratings or counts over different time spans. It exposes four 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; }
}