| 123456789101112131415161718192021222324252627 |
- using System;
- using Newtonsoft.Json;
- using System.Xml.Serialization;
- namespace Essensoft.AspNetCore.Payment.Alipay.Domain
- {
- /// <summary>
- /// AlipayOverseasTravelAppleCampprizeDetectModel Data Structure.
- /// </summary>
- [Serializable]
- public class AlipayOverseasTravelAppleCampprizeDetectModel : AlipayObject
- {
- /// <summary>
- /// 活动id
- /// </summary>
- [JsonProperty("camp_id")]
- [XmlElement("camp_id")]
- public string CampId { get; set; }
- /// <summary>
- /// 蚂蚁统一会员ID
- /// </summary>
- [JsonProperty("user_id")]
- [XmlElement("user_id")]
- public string UserId { get; set; }
- }
- }
|