Browse Source

initial commit

pull/2591/head
Misha133 2 years ago
parent
commit
a5052e89b4
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      src/Discord.Net.Core/Entities/Messages/MessageFlags.cs

+ 9
- 1
src/Discord.Net.Core/Entities/Messages/MessageFlags.cs View File

@@ -43,6 +43,14 @@ namespace Discord
/// <summary>
/// Flag given to messages that is an Interaction Response and the bot is "thinking"
/// </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>
FailedToMentionRolesInThreads = 1 << 8,
/// <summary>
/// Flag give to messages that will not trigger push and desktop notifications.
/// </summary>
SuppressNotification = 1 << 12
}
}

Loading…
Cancel
Save