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,
}
}