19 lines
462 B
C#
19 lines
462 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiCateringDishMaterialCreateModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiCateringDishMaterialCreateModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 菜品加料入参
|
|
/// </summary>
|
|
[XmlElement("kb_dish_material_info")]
|
|
public KbdishMaterialInfo KbDishMaterialInfo { get; set; }
|
|
}
|
|
}
|