using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// OdinsSmartRobotAskResponse. /// public class OdinsSmartRobotAskResponse : TopResponse { /// /// 接口返回model /// [XmlElement("result")] public ResultDomain Result { get; set; } /// /// ResultDomain Data Structure. /// [Serializable] public class ResultDomain : TopObject { /// /// 问题答案 /// [XmlElement("data")] public string Data { get; set; } /// /// 错误码 /// [XmlElement("error_code")] public long ErrorCode { get; set; } /// /// 错误信息 /// [XmlElement("error_msg")] public string ErrorMsg { get; set; } /// /// 是否成功 /// [XmlElement("success")] public bool Success { get; set; } } } }