Simple data model representing a player's performance metrics for an account. It holds a Glicko rating object, a count (Nb) and a progress value.
#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; }
}