using System;
using System.Xml.Serialization;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// KoubeiCateringDishCommgroupSyncResponse.
///
public class KoubeiCateringDishCommgroupSyncResponse : AopResponse
{
///
/// 通用分组的id,标示组结构的唯一id
///
[XmlElement("comm_group_id")]
public string CommGroupId { get; set; }
///
/// 客制化组模型,新增和更新的时候传出
///
[XmlElement("kbdish_comm_group_info")]
public KbdishCommGroupInfo KbdishCommGroupInfo { get; set; }
}
}