using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// FaceSearchUserInfo Data Structure.
///
[Serializable]
public class FaceSearchUserInfo : AopObject
{
///
/// 自定义用户标识
///
[XmlElement("customuserid")]
public string Customuserid { get; set; }
///
/// 商户标识
///
[XmlElement("merchantid")]
public string Merchantid { get; set; }
///
/// 商户uid
///
[XmlElement("merchantuid")]
public string Merchantuid { get; set; }
///
/// 分数
///
[XmlElement("score")]
public string Score { get; set; }
}
}