You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Overwrite.cs 441 B

1234567891011121314151617
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. namespace Discord.API
  4. {
  5. internal class Overwrite
  6. {
  7. [JsonProperty("id")]
  8. public ulong TargetId { get; set; }
  9. [JsonProperty("type")]
  10. public PermissionTarget TargetType { get; set; }
  11. [JsonProperty("deny"), Int53]
  12. public ulong Deny { get; set; }
  13. [JsonProperty("allow"), Int53]
  14. public ulong Allow { get; set; }
  15. }
  16. }