19 lines
513 B
C#
19 lines
513 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AntMerchantExpandIndirectSourceQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AntMerchantExpandIndirectSourceQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 商户在支付宝入驻成功后,生成的支付宝内全局唯一的商户编号
|
|
/// </summary>
|
|
[XmlElement("sub_merchant_id")]
|
|
public string SubMerchantId { get; set; }
|
|
}
|
|
}
|