You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
498 B
16 lines
498 B
namespace Discord
|
|
{
|
|
/// <summary> Specifies the state of the client's login status. </summary>
|
|
public enum LoginState : byte
|
|
{
|
|
/// <summary> The client is currently logged out. </summary>
|
|
LoggedOut,
|
|
/// <summary> The client is currently logging in. </summary>
|
|
LoggingIn,
|
|
/// <summary> The client is currently logged in. </summary>
|
|
LoggedIn,
|
|
/// <summary> The client is currently logging out. </summary>
|
|
LoggingOut
|
|
}
|
|
}
|