From ae729ef3261aefb326586edeec4cf3f23d484d1b Mon Sep 17 00:00:00 2001 From: quin lynch Date: Thu, 7 Oct 2021 01:49:29 -0300 Subject: [PATCH] Update StagePrivacyLevel summary --- .../Entities/Channels/StagePrivacyLevel.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Discord.Net.Core/Entities/Channels/StagePrivacyLevel.cs b/src/Discord.Net.Core/Entities/Channels/StagePrivacyLevel.cs index 6a51ab4ac..3a91b61aa 100644 --- a/src/Discord.Net.Core/Entities/Channels/StagePrivacyLevel.cs +++ b/src/Discord.Net.Core/Entities/Channels/StagePrivacyLevel.cs @@ -6,9 +6,19 @@ using System.Threading.Tasks; namespace Discord { + /// + /// Represents the privacy level of a stage. + /// public enum StagePrivacyLevel { + /// + /// The stage is a public stage. + /// Public = 1, + + /// + /// The stage is non public and is only accessable from the guild. + /// GuildOnly = 2, } }