IotVoicGetReply.cs 262 B

123456789101112
  1. namespace IoTIntegrationPlatform.Model.MqttModel
  2. {
  3. /// <summary>
  4. /// 语音接口格式
  5. /// </summary>
  6. internal class IotVoicGetReply
  7. {
  8. public string uid { get; set; }
  9. public VoiceGetReplyInfo[] data { get; set; }
  10. }
  11. }