21 lines
517 B
C#
21 lines
517 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMarketingDataMallShopitemsQueryResponse.
|
|
/// </summary>
|
|
public class KoubeiMarketingDataMallShopitemsQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 店铺信息
|
|
/// </summary>
|
|
[XmlArray("shop_list")]
|
|
[XmlArrayItem("t_b_mini_shop_bo")]
|
|
public List<TBMiniShopBo> ShopList { get; set; }
|
|
}
|
|
}
|