using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// ConsumeInfo Data Structure.
///
[Serializable]
public class ConsumeInfo : AopObject
{
///
/// 领取时间
///
[JsonProperty("taken_time")]
public string TakenTime { get; set; }
///
/// 用户名
///
[JsonProperty("user_name")]
public string UserName { get; set; }
///
/// 面额(单位分)
///
[JsonProperty("voucher_amt")]
public string VoucherAmt { get; set; }
}
}