Entities/Enumerations/GameResult.cs

An enum representing the possible outcomes of a chess game. It defines three values: 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
}