[Feature] Add support for silent mentions & add missing message flag (#2591)

* initial commit

* typo
This commit is contained in:
Misha133
2023-02-09 18:39:43 +03:00
committed by GitHub
parent 274be5df9e
commit 2ea8af1dde

View File

@@ -43,6 +43,14 @@ namespace Discord
/// <summary> /// <summary>
/// Flag given to messages that is an Interaction Response and the bot is "thinking" /// Flag given to messages that is an Interaction Response and the bot is "thinking"
/// </summary> /// </summary>
Loading = 1 << 7 Loading = 1 << 7,
/// <summary>
/// Flag given to messages that failed to mention some roles and add their members to the thread.
/// </summary>
FailedToMentionRolesInThread = 1 << 8,
/// <summary>
/// Flag give to messages that will not trigger push and desktop notifications.
/// </summary>
SuppressNotification = 1 << 12
} }
} }