NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignMemb...

25 lines
652 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiMarketingCampaignMemberTemplateOfflineModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignMemberTemplateOfflineModel : AopObject
{
/// <summary>
/// 会员模板id
/// </summary>
[XmlElement("member_template_id")]
public string MemberTemplateId { get; set; }
/// <summary>
/// 请求ID由开发者生成并保证唯一性
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
}
}