Entities/Enumerations/Title.cs

Enum representing chess titles used by LichessNET. Lists common 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,
}