Entities/Stats/Performance/Glicko.cs

Simple data class representing a Glicko rating. It stores Rating (double), Deviation (double) and a boolean Provisional flag.

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