Code/Entities/Enumerations/Speed.cs

An enum representing chess game time controls. It defines 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,
}