Code/Entities/Stats/Performance/Perf.cs

Plain data model class named Perf in the LichessNET.Entities.Account.Performance namespace. It holds three properties: a Glicko object, an integer Nb, and an integer Progress, likely representing a player's performance rating metadata.

#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; }
}