19 lines
414 B
C#
19 lines
414 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiCateringPosDeskModifyModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiCateringPosDeskModifyModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 餐桌信息
|
|
/// </summary>
|
|
[XmlElement("pos_desk")]
|
|
public DeskEntity PosDesk { get; set; }
|
|
}
|
|
}
|