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