using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayCommerceCityfacilitatorFunctionQueryResponse.
///
public class AlipayCommerceCityfacilitatorFunctionQueryResponse : AopResponse
{
///
/// 支持的功能列表
///
[JsonProperty("functions")]
public List Functions { get; set; }
}
}