using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// OfflinepayBaseRPCResponseInfo Data Structure.
///
[Serializable]
public class OfflinepayBaseRPCResponseInfo : AopObject
{
///
/// 错误指示器
///
[XmlElement("error_indicator")]
public OfflinepayErrorIndicator ErrorIndicator { get; set; }
///
/// 应答扩展参数
///
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
///
/// 是否调用成功
///
[XmlElement("success")]
public string Success { get; set; }
///
/// 服务端时间
///
[XmlElement("time")]
public long Time { get; set; }
}
}