18 lines
406 B
C#
18 lines
406 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayMarketingCampaignDrawcampCreateResponse.
|
|
/// </summary>
|
|
public class AlipayMarketingCampaignDrawcampCreateResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 抽奖活动id
|
|
/// </summary>
|
|
[XmlElement("camp_id")]
|
|
public string CampId { get; set; }
|
|
}
|
|
}
|