Simple data model for a social challenger from LichessNET. It defines a POCO with Id, Name, Rating, Title, Provisional, Online and Lag properties.
#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; }
}