21 lines
538 B
C#
21 lines
538 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMarketingDataIsvShopQueryResponse.
|
|
/// </summary>
|
|
public class KoubeiMarketingDataIsvShopQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 门店摘要信息列表
|
|
/// </summary>
|
|
[XmlArray("shop_summary_infos")]
|
|
[XmlArrayItem("shop_summary_info")]
|
|
public List<ShopSummaryInfo> ShopSummaryInfos { get; set; }
|
|
}
|
|
}
|