25 lines
665 B
C#
25 lines
665 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// ZolozIdentificationCustomerEnrollCancelModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ZolozIdentificationCustomerEnrollCancelModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 商户请求的唯一标志,该标识作为对账的关键信息,商户要保证其唯一性
|
|
/// </summary>
|
|
[XmlElement("biz_id")]
|
|
public string BizId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商户的用户id
|
|
/// </summary>
|
|
[XmlElement("user_id")]
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|