using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// OtherAmountInfos Data Structure.
///
[Serializable]
public class OtherAmountInfos : AopObject
{
///
/// 费用金额
///
[XmlElement("price")]
public string Price { get; set; }
///
/// 可枚举的类型。 SERVICE_FEE:服务费; TABLE_FEE:餐台费; OTHER:其他费用
///
[XmlElement("type")]
public string Type { get; set; }
}
}