25 lines
758 B
C#
25 lines
758 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayOpenMiniVersionDeleteModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayOpenMiniVersionDeleteModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 小程序版本号
|
||
/// </summary>
|
||
[XmlElement("app_version")]
|
||
public string AppVersion { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序投放的端参数,例如投放到支付宝钱包是支付宝端。该参数可选,默认支付宝端,目前仅支持支付宝端,枚举列举:com.alipay.alipaywallet:支付宝端
|
||
/// </summary>
|
||
[XmlElement("bundle_id")]
|
||
public string BundleId { get; set; }
|
||
}
|
||
}
|