Entities/Game/Variant.cs

Represents a Lichess chess game variant with two properties: Key and Name.

#nullable enable annotations

namespace LichessNET.Entities.Game;

/// <summary>
/// Represents a variant of a chess game in Lichess.
/// </summary>
public class Variant
{
    public string Key { get; set; }
    public string Name { get; set; }
}