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.

VoiceRegion.cs 572 B

10 years ago
123456789101112131415161718192021
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. namespace Discord.API
  4. {
  5. internal class VoiceRegion
  6. {
  7. [JsonProperty("id")]
  8. public string Id { get; set; }
  9. [JsonProperty("name")]
  10. public string Name { get; set; }
  11. [JsonProperty("vip")]
  12. public bool IsVip { get; set; }
  13. [JsonProperty("optimal")]
  14. public bool IsOptimal { get; set; }
  15. [JsonProperty("deprecated")]
  16. public bool IsDeprecated { get; set; }
  17. [JsonProperty("custom")]
  18. public bool IsCustom { get; set; }
  19. }
  20. }