25 lines
563 B
C#
25 lines
563 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMerchantOperatorRoleDeleteModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiMerchantOperatorRoleDeleteModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 操作员ID
|
|
/// </summary>
|
|
[XmlElement("auth_code")]
|
|
public string AuthCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 角色ID
|
|
/// </summary>
|
|
[XmlElement("role_id")]
|
|
public string RoleId { get; set; }
|
|
}
|
|
}
|