using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// CardFrontTextDTO Data Structure.
///
[Serializable]
public class CardFrontTextDTO : AopObject
{
///
/// 文案标签
///
[JsonProperty("label")]
public string Label { get; set; }
///
/// 展示文案
///
[JsonProperty("value")]
public string Value { get; set; }
}
}