Code/Entities/Enumerations/Title.cs

Enum declaring chess titles used by the LichessNET project. Lists various player titles including gendered and special titles and a Bot entry.

#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,
}