Browse Source

Adding BotHTTPInteraction user flag (#252)

pull/1923/head
KeylAmi GitHub 3 years ago
parent
commit
55794d5190
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/Discord.Net.Core/Entities/Users/UserProperties.cs

+ 5
- 1
src/Discord.Net.Core/Entities/Users/UserProperties.cs View File

@@ -61,9 +61,13 @@ namespace Discord
/// Flag given to users that developed bots and early verified their accounts. /// Flag given to users that developed bots and early verified their accounts.
/// </summary> /// </summary>
EarlyVerifiedBotDeveloper = 1 << 17, EarlyVerifiedBotDeveloper = 1 << 17,
/// <summary>
/// <summary>
/// Flag given to users that are discord certified moderators who has give discord's exam. /// Flag given to users that are discord certified moderators who has give discord's exam.
/// </summary> /// </summary>
DiscordCertifiedModerator = 1 << 18, DiscordCertifiedModerator = 1 << 18,
/// <summary>
/// Flag given to bots that use only outgoing webhooks, exclusively.
/// </summary>
BotHTTPInteractions = 1 << 19,
} }
} }

Loading…
Cancel
Save