using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// WhitehatInfo Data Structure.
///
[Serializable]
public class WhitehatInfo : AopObject
{
///
/// 当前有效的安全币奖励
///
[XmlElement("coin")]
public long Coin { get; set; }
///
/// 历史总金币奖励
///
[XmlElement("history_coin")]
public long HistoryCoin { get; set; }
///
/// 称号
///
[XmlElement("level")]
public string Level { get; set; }
}
}