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