using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// DiscountByDayModel Data Structure.
///
[Serializable]
public class DiscountByDayModel : AopObject
{
///
/// 开始天数,最小为1
///
[XmlElement("begin_day")]
public long BeginDay { get; set; }
///
/// 相对折扣,保留小数点2位
///
[XmlElement("discount")]
public string Discount { get; set; }
///
/// 结束天数
///
[XmlElement("end_day")]
public long EndDay { get; set; }
}
}