using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// VoucherDescDetailModel Data Structure.
///
[Serializable]
public class VoucherDescDetailModel : AopObject
{
///
/// 优惠的说明信息
///
[XmlArray("details")]
[XmlArrayItem("string")]
public List Details { get; set; }
///
/// 优惠的标题
///
[XmlElement("title")]
public string Title { get; set; }
}
}