A plain data model representing high scores for a Puzzle Storm feature. It has four integer properties AllTime, Day, Month, and Week that likely store leaderboard or best-score values over different time spans.
#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; }
}