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.

VoiceDeviceSettings.cs 398 B

1234567891011121314
  1. using Newtonsoft.Json;
  2. namespace Discord.API.Rpc
  3. {
  4. internal class VoiceDeviceSettings
  5. {
  6. [JsonProperty("device_id")]
  7. public Optional<string> DeviceId { get; set; }
  8. [JsonProperty("volume")]
  9. public Optional<float> Volume { get; set; }
  10. [JsonProperty("available_devices")]
  11. public Optional<VoiceDevice[]> AvailableDevices { get; set; }
  12. }
  13. }