using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// FaceExtInfo Data Structure. /// [Serializable] public class FaceExtInfo : AopObject { /// /// 年龄区间判断的上限,闭区间 /// [XmlElement("max_age")] public string MaxAge { get; set; } /// /// 年龄区间判断的下限,闭区间 /// [XmlElement("min_age")] public string MinAge { get; set; } /// /// query_type不填, 返回uid query_type=1, 返回手机号 query_type=2, 返回图片 /// [XmlElement("query_type")] public string QueryType { get; set; } } }