Enum type representing signal connection quality with five named values: Excellent, Good, Medium, Bad, and Unknown, assigned integer values 1-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
}