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.

UserVoiceSettings.cs 455 B

123456789101112131415161718
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. namespace Discord.API.Rpc
  4. {
  5. internal class UserVoiceSettings
  6. {
  7. [JsonProperty("userId")]
  8. internal ulong UserId { get; set; }
  9. [JsonProperty("pan")]
  10. public Optional<Pan> Pan { get; set; }
  11. [JsonProperty("volume")]
  12. public Optional<int> Volume { get; set; }
  13. [JsonProperty("mute")]
  14. public Optional<bool> Mute { get; set; }
  15. }
  16. }