Enum that represents signal connection quality for LichessNET entities. It defines five named values: Excellent, Good, Medium, Bad, and Unknown with explicit 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
}