using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// VoucherDescDetail Data Structure.
///
[Serializable]
public class VoucherDescDetail : AopObject
{
///
/// 具体描述信息列表
///
[JsonProperty("details")]
public List Details { get; set; }
///
/// 图片描述信息
///
[JsonProperty("images")]
public List Images { get; set; }
///
/// 券说明的标题
///
[JsonProperty("title")]
public string Title { get; set; }
///
/// 券外部详情描述
///
[JsonProperty("url")]
public string Url { get; set; }
}
}