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.

23 lines
460 B

using System;
namespace Discord
{
/// <summary> Specifies the type of token to use with the client. </summary>
public enum TokenType
{
User,
/// <summary>
/// An OAuth2 token type.
/// </summary>
Bearer,
/// <summary>
/// A bot token type.
/// </summary>
Bot,
/// <summary>
/// A webhook token type.
/// </summary>
Webhook
}
}