Simple data model class in the LichessNET.Entities.Account.Performance namespace. It holds a Glicko object and two integers Nb and Progress, likely representing rating info and counts.
#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; }
}