using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// KoubeiCateringPosCategorySaveModel Data Structure.
///
[Serializable]
public class KoubeiCateringPosCategorySaveModel : AopObject
{
///
/// 排序菜类列表
///
[XmlArray("category_entity_list")]
[XmlArrayItem("dish_category_entity")]
public List CategoryEntityList { get; set; }
}
}