19 lines
404 B
C#
19 lines
404 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenAppNotifyVerifyModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayOpenAppNotifyVerifyModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 通知id
|
|
/// </summary>
|
|
[XmlElement("notify_id")]
|
|
public string NotifyId { get; set; }
|
|
}
|
|
}
|