Code/Entities/Stats/Performance/Glicko.cs

Simple data class representing a Glicko rating for an account performance category. It stores Rating, Deviation and whether the rating is Provisional.

#nullable enable annotations

namespace LichessNET.Entities.Account.Performance;

public class Glicko
{
    public double Rating { get; set; }
    public double Deviation { get; set; }
    public bool Provisional { get; set; }
}