19 lines
490 B
C#
19 lines
490 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayMarketingCampaignDrawcampQueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayMarketingCampaignDrawcampQueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 抽奖活动id,通过alipay.marketing.campaign.drawcamp.create接口返回
|
||
/// </summary>
|
||
[XmlElement("camp_id")]
|
||
public string CampId { get; set; }
|
||
}
|
||
}
|