25 lines
568 B
C#
25 lines
568 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMerchantOperatorUnfreezeModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiMerchantOperatorUnfreezeModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 授权码
|
|
/// </summary>
|
|
[XmlElement("auth_code")]
|
|
public string AuthCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作员ID
|
|
/// </summary>
|
|
[XmlElement("operator_id")]
|
|
public string OperatorId { get; set; }
|
|
}
|
|
}
|