Browse Source

Merge pull request #33 from MrCakeSlayer/patch-1

Add new channel type IDs
pull/1923/head
Quin Lynch GitHub 4 years ago
parent
commit
118edf3657
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions
  1. +12
    -1
      src/Discord.Net.Core/Entities/Channels/ChannelType.cs

+ 12
- 1
src/Discord.Net.Core/Entities/Channels/ChannelType.cs View File

@@ -14,6 +14,17 @@ namespace Discord
/// <summary> The channel is a category channel. </summary> /// <summary> The channel is a category channel. </summary>
Category = 4, Category = 4,
/// <summary> The channel is a news channel. </summary> /// <summary> The channel is a news channel. </summary>
News = 5
News = 5,
/// <summary> The channel is a store channel. </summary>
Store = 6,
/// <summary> The channel is a temporary thread channel under a news channel. </summary>
NewsThread = 10,
/// <summary> The channel is a temporary thread channel under a text channel. </summary>
PublicThread = 11,
/// <summary> The channel is a private temporary thread channel under a text channel. </summary>
PrivateThread = 12,
/// <summary> The channel is a stage voice channel. </summary>
Stage = 13

} }
} }

Loading…
Cancel
Save