Browse Source

Implement channel ApplicationCommandPermissionTarge

pull/2557/head
Cenngo 2 years ago
parent
commit
21568689ce
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/Discord.Net.Core/Entities/Permissions/ApplicationCommandPermissionTarget.cs

+ 5
- 1
src/Discord.Net.Core/Entities/Permissions/ApplicationCommandPermissionTarget.cs View File

@@ -12,6 +12,10 @@ namespace Discord
/// <summary>
/// The target of the permission is a user.
/// </summary>
User = 2
User = 2,
/// <summary>
/// The target of the permission is a channel.
/// </summary>
Channel = 3
}
}

Loading…
Cancel
Save