Browse Source

add a None flag to SystemChannelMessage enum

pull/1319/head
Chris Johnston 6 years ago
parent
commit
a00d8a419f
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      src/Discord.Net.Core/Entities/Guilds/SystemChannelMessageDeny.cs

+ 5
- 0
src/Discord.Net.Core/Entities/Guilds/SystemChannelMessageDeny.cs View File

@@ -5,6 +5,11 @@ namespace Discord
[Flags] [Flags]
public enum SystemChannelMessageDeny public enum SystemChannelMessageDeny
{ {
/// <summary>
/// Deny none of the system channel messages.
/// This will enable all of the system channel messages.
/// </summary>
None = 0,
/// <summary> /// <summary>
/// The messages that are sent when a user joins the guild. /// The messages that are sent when a user joins the guild.
/// </summary> /// </summary>


Loading…
Cancel
Save