A simple POCO representing a challenger in the social domain. It holds identifier, display name, rating, title, provisional flag, online status, and lag.
#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; }
}