using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenAppNotifyVerifyModel Data Structure. /// [Serializable] public class AlipayOpenAppNotifyVerifyModel : AopObject { /// /// 通知id /// [XmlElement("notify_id")] public string NotifyId { get; set; } } }