Code/Entities/Enumerations/Speed.cs

Enum type defining chess game time controls. Lists possible speeds: UltraBullet, Bullet, Blitz, Rapid, Classical, Correspondence.

#nullable enable annotations

namespace LichessNET.Entities.Enumerations;

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