19 lines
438 B
C#
19 lines
438 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiCateringPosDishSyncModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiCateringPosDishSyncModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 自建盒子菜品的模型
|
|
/// </summary>
|
|
[XmlElement("pos_dish_model")]
|
|
public PosDishModel PosDishModel { get; set; }
|
|
}
|
|
}
|