Entities/Puzzle/Dashboard/PuzzleResults.cs

Simple data model for puzzle dashboard results. Defines a POCO PuzzleResults with integer properties FirstWins, Nb, Performance, PuzzleRatingAvg, and ReplayWins.

#nullable enable annotations

namespace LichessNET.Entities.Puzzle.Dashboard;

public class PuzzleResults
{
    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; }
}