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

Adding BotHTTPInteraction user flag #252

Merged
merged 1 commit into from
Oct 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,
}
}