using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// FaceSearchResult Data Structure. /// [Serializable] public class FaceSearchResult : AopObject { /// /// faceType /// [XmlElement("face_type")] public string FaceType { get; set; } /// /// 分数 /// [XmlElement("score")] public string Score { get; set; } /// /// 用户ID /// [XmlElement("user_id")] public string UserId { get; set; } /// /// 身份证姓名 /// [XmlElement("user_name")] public string UserName { get; set; } } }