Entities/Puzzle/Dashboard/GlobalPuzzlePerformance.cs

A plain data model representing aggregated puzzle performance metrics for a global dashboard. It defines five integer properties: FirstWins, Nb, Performance, PuzzleRatingAvg, and ReplayWins.

#nullable enable annotations

namespace LichessNET.Entities.Puzzle.Dashboard;

public class GlobalPuzzlePerformance
{
    public int FirstWins { get; set; }
    public int Nb { get; set; }
    public int Performance { get; set; }
    public int PuzzleRatingAvg { get; set; }
    public int ReplayWins { get; set; }
}