Browse Source

Update StagePrivacyLevel summary

pull/1923/head
quin lynch 3 years ago
parent
commit
ae729ef326
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      src/Discord.Net.Core/Entities/Channels/StagePrivacyLevel.cs

+ 10
- 0
src/Discord.Net.Core/Entities/Channels/StagePrivacyLevel.cs View File

@@ -6,9 +6,19 @@ using System.Threading.Tasks;

namespace Discord
{
/// <summary>
/// Represents the privacy level of a stage.
/// </summary>
public enum StagePrivacyLevel
{
/// <summary>
/// The stage is a public stage.
/// </summary>
Public = 1,

/// <summary>
/// The stage is non public and is only accessable from the guild.
/// </summary>
GuildOnly = 2,
}
}

Loading…
Cancel
Save