using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ItapResponsePayload Data Structure.
///
[Serializable]
public class ItapResponsePayload : AopObject
{
///
/// 是否成功,true/false
///
[XmlElement("result")]
public bool Result { get; set; }
///
/// 结果码
///
[XmlElement("result_code")]
public string ResultCode { get; set; }
///
/// 结果描述
///
[XmlElement("result_msg")]
public string ResultMsg { get; set; }
}
}