19 lines
420 B
C#
19 lines
420 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenAuthAppAesGetModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayOpenAuthAppAesGetModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 商家应用appId
|
|
/// </summary>
|
|
[XmlElement("merchant_app_id")]
|
|
public string MerchantAppId { get; set; }
|
|
}
|
|
}
|