Skip to content
This repository has been archived by the owner on Apr 20, 2022. It is now read-only.

Commit

Permalink
Adding BotHTTPInteraction user flag (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
drobbins329 authored Oct 23, 2021
1 parent dd3214d commit 55794d5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Discord.Net.Core/Entities/Users/UserProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,13 @@ public enum UserProperties
/// Flag given to users that developed bots and early verified their accounts.
/// </summary>
EarlyVerifiedBotDeveloper = 1 << 17,
/// <summary>
/// <summary>
/// Flag given to users that are discord certified moderators who has give discord's exam.
/// </summary>
DiscordCertifiedModerator = 1 << 18,
/// <summary>
/// Flag given to bots that use only outgoing webhooks, exclusively.
/// </summary>
BotHTTPInteractions = 1 << 19,
}
}

0 comments on commit 55794d5

Please sign in to comment.