You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
571 B
C#

9 months ago
using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipaySecurityProdFacerepoAddResponse.
/// </summary>
public class AlipaySecurityProdFacerepoAddResponse : AopResponse
{
/// <summary>
/// 扩展信息
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 对此次插入人脸库分组的人脸id标识
/// </summary>
[XmlElement("face_id")]
public string FaceId { get; set; }
}
}