Enum type representing possible outcomes of a chess game. Defines WhiteVictory, BlackVictory, and Stalemate.
#nullable enable annotations
namespace LichessNET.Entities.Enumerations;
/// <summary>
/// Represents the outcome of a chess game.
/// </summary>
public enum GameResult
{
WhiteVictory,
BlackVictory,
Stalemate
}