using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ItemUnitInfo Data Structure.
///
[Serializable]
public class ItemUnitInfo : AopObject
{
///
/// 商品详情-商品套餐内容-菜品数量
///
[XmlElement("amount")]
public long Amount { get; set; }
///
/// 商品详情-商品套餐内容-菜品价格。字符串,单位元,两位小数
///
[XmlElement("price")]
public string Price { get; set; }
///
/// 商品详情-商品套餐内容-菜品规格
///
[XmlElement("spec")]
public string Spec { get; set; }
///
/// 商品详情-商品套餐内容-菜品名称。不得超过15个中文字符
///
[XmlElement("title")]
public string Title { get; set; }
///
/// 商品详情-商品套餐内容-菜品数量单位
///
[XmlElement("unit")]
public string Unit { get; set; }
}
}