Enumeration type GameStatus representing possible end or progress states of a chess game, including Created, Started and various finish reasons like Mate, Resign, Stalemate, Timeout, Draw and others.
#nullable enable annotations
namespace LichessNET.Entities.Enumerations;
public enum GameStatus
{
Created,
Started,
Aborted,
Mate,
Resign,
Stalemate,
Timeout,
Draw,
OutOfTime,
Cheat,
NoStart,
UnknownFinish,
VariantEnd,
}