namespace SharpChat.Connections;

public enum ConnectionCloseReason {
    Unexpected,
    Normal,
    ShuttingDown,
    Restarting,
    TimeOut,
    Unauthorized,
    Unavailable,
    AccessDenied,
    TooManyConnections,
    Error,
}