Simple POCO representing a challenger in social context. It declares Id, Name, Rating, Title, Provisional, Online and Lag properties and holds user metadata.
#nullable enable annotations
namespace LichessNET.Entities.Social;
public class Challenger
{
public string Id { get; set; }
public string Name { get; set; }
public int Rating { get; set; }
public string Title { get; set; }
public bool Provisional { get; set; }
public bool Online { get; set; }
public int Lag { get; set; }
}