Entities/Stats/Performance/Perf.cs

A simple data model representing a player's performance in an account context. It contains a Glicko rating object, a count (Nb) and a Progress integer.

#nullable enable annotations

namespace LichessNET.Entities.Account.Performance;

public class Perf
{
    public Glicko Glicko { get; set; }
    public int Nb { get; set; }
    public int Progress { get; set; }
}