2025-03-27 15:05:14 +08:00

25 lines
561 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace SuperMap.RealEstate.ExchangeData.Handler.Model
{
/// <summary>
/// 语音识别MODEL
/// </summary>
public class VideoModel
{
// "corpus_no": "6579081817853143896",
// "err_msg": "success.",
// "err_no": 0,
// "result": [
// "你好,"
// ],
// "sn": "105465346161531811854"
public string err_msg;
public string err_no;
public string[] result;
}
}