A simple data model class representing a player's performance statistics. It holds typed properties such as PerfType, Highest, Lowest, BestWins, WorstLosses, Count, ResultStreak, UserId, and PlayStreak.
#nullable enable annotations
namespace LichessNET.Entities.Account.Performance;
public class Stat
{
public PerfType PerfType { get; set; }
public Highest Lowest { get; set; }
public Highest Highest { get; set; }
public BestWins BestWins { get; set; }
public WorstLosses WorstLosses { get; set; }
public Count Count { get; set; }
public ResultStreak ResultStreak { get; set; }
public UserId UserId { get; set; }
public PlayStreak PlayStreak { get; set; }
}