18 lines
541 B
C#
18 lines
541 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMarketingCampaignAssetDetailQueryResponse.
|
|
/// </summary>
|
|
public class KoubeiMarketingCampaignAssetDetailQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 适用门店:门店与门店之间用“,”隔开,适用门店的意思:就是该资产只能在返回的门店中核销该资产。
|
|
/// </summary>
|
|
[XmlElement("limit_shops")]
|
|
public string LimitShops { get; set; }
|
|
}
|
|
}
|