A plain data class representing high scores or counts for PuzzleStorm time ranges. 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; }
}