using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// IgAuthQuota Data Structure.
///
[Serializable]
public class IgAuthQuota : AopObject
{
///
/// 份额数量
///
[XmlElement("quota_count")]
public long QuotaCount { get; set; }
///
/// 周期类型
///
[XmlElement("range_type")]
public string RangeType { get; set; }
}
}