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.

ModifyVoiceChannelParams.cs 411 B

1234567891011121314
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. namespace Discord.API.Rest
  4. {
  5. [JsonObject(MemberSerialization = MemberSerialization.OptIn)]
  6. internal class ModifyVoiceChannelParams : ModifyNestedChannelParams
  7. {
  8. [JsonProperty("bitrate")]
  9. public Optional<int> Bitrate { get; set; }
  10. [JsonProperty("user_limit")]
  11. public Optional<int> UserLimit { get; set; }
  12. }
  13. }