21 lines
508 B
C#
21 lines
508 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMarketingDataNearmallQueryResponse.
|
|
/// </summary>
|
|
public class KoubeiMarketingDataNearmallQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 商圈信息
|
|
/// </summary>
|
|
[XmlArray("near_mall_bos")]
|
|
[XmlArrayItem("near_mall_bo")]
|
|
public List<NearMallBo> NearMallBos { get; set; }
|
|
}
|
|
}
|