namespace Discord
{
/// Specifies the connection state of a client.
public enum ConnectionState : byte
{
/// The client has disconnected from Discord.
Disconnected,
/// The client is connecting to Discord.
Connecting,
/// The client has established a connection to Discord.
Connected,
/// The client is disconnecting from Discord.
Disconnecting
}
}