using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PortraitDistribution Data Structure.
///
[Serializable]
public class PortraitDistribution : AopObject
{
///
/// 分布段的key
///
[XmlElement("key")]
public string Key { get; set; }
///
/// 该分布段的数量
///
[XmlElement("number")]
public string Number { get; set; }
///
/// 该分布段的比例
///
[XmlElement("ratio")]
public string Ratio { get; set; }
}
}