Entities/Enumerations/Speed.cs

An enum type defining chess game time control categories used by LichessNET. It lists possible speeds: UltraBullet, Bullet, Blitz, Rapid, Classical, and Correspondence.

#nullable enable annotations

namespace LichessNET.Entities.Enumerations;

public enum Speed
{
    UltraBullet, 
    Bullet,
    Blitz,
    Rapid,
    Classical,
    Correspondence,
}