Simple POCO representing a player's Glicko rating. It stores rating value, 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; }
}