Enum representing chess titles used by LichessNET. Lists standard FIDE and Lichess titles including gendered titles and Bot.
#nullable enable annotations
namespace LichessNET.Entities.Enumerations;
/// <summary>
/// Represents the titles awarded in chess on the Lichess platform.
/// </summary>
public enum Title
{
CM,
NM,
FM,
IM,
GM,
LM,
WCM,
WFM,
WIM,
WGM,
Bot,
}