Plain data class representing a player's Glicko rating state. It stores a numeric rating, rating deviation, and a 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; }
}