Code/Entities/Enumerations/SignalConnection.cs

An enum type that defines signal connection quality levels: Excellent, Good, Medium, Bad, and Unknown with explicit integer values from 1 to 5.

#nullable enable annotations

namespace LichessNET.Entities.Enumerations;

/// <summary>
/// Represents the quality of a signal connection.
/// </summary>
public enum SignalConnection
{
    Excellent = 1,
    Good = 2,
    Medium = 3,
    Bad = 4,
    Unknown = 5
}