An enum defining chess player titles used by the LichessNET project. Lists standard over-the-board and women-specific titles plus 'Bot' and 'LM'.
#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,
}