using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// KoubeiCateringDishSpecgroupQueryResponse.
///
public class KoubeiCateringDishSpecgroupQueryResponse : AopResponse
{
///
/// 商户的在接入蚂蚁开放平台的user_id
///
[XmlElement("merchant_id")]
public string MerchantId { get; set; }
///
/// 规格标签信息
///
[XmlArray("spec_group_list")]
[XmlArrayItem("kbdish_spec_group")]
public List SpecGroupList { get; set; }
}
}