Browse Source

add missing application flags

pull/2521/head
Misha133 2 years ago
parent
commit
522a3f6e80
1 changed files with 26 additions and 15 deletions
  1. +26
    -15
      src/Discord.Net.Core/Entities/ApplicationFlags.cs

+ 26
- 15
src/Discord.Net.Core/Entities/ApplicationFlags.cs View File

@@ -4,20 +4,31 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Discord
namespace Discord;

/// <summary>
/// Represents public flags for an application.
/// </summary>
public enum ApplicationFlags
{
/// <summary>
/// Represents public flags for an application.
/// </summary>
public enum ApplicationFlags
{
GatewayPresence = 1 << 12,
GatewayPresenceLimited = 1 << 13,
GatewayGuildMembers = 1 << 14,
GatewayGuildMembersLimited = 1 << 15,
VerificationPendingGuildLimit = 1 << 16,
Embedded = 1 << 17,
GatewayMessageContent = 1 << 18,
GatewayMessageContentLimited = 1 << 19
}
GatewayPresence = 1 << 12,

GatewayPresenceLimited = 1 << 13,

GatewayGuildMembers = 1 << 14,

GatewayGuildMembersLimited = 1 << 15,

VerificationPendingGuildLimit = 1 << 16,

Embedded = 1 << 17,

GatewayMessageContent = 1 << 18,

GatewayMessageContentLimited = 1 << 19,

ApplicationCommandBadge = 1 << 23,

ActiveApplication = 1 << 24
}


Loading…
Cancel
Save