Entities/Stats/Performance/PerformanceStats.cs

Simple data model for a user's performance stats. Defines PerformanceStats with User, Perf, Rank, Percentile and Stat properties, used to hold account performance data.

#nullable enable annotations

using System.Text.Json.Serialization;

namespace LichessNET.Entities.Account.Performance;

public class PerformanceStats
{
    public string User { get; set; }
    public Perf Perf { get; set; }
    public int Rank { get; set; }
    public double Percentile { get; set; }
    public Stat Stat { get; set; }
}