using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// CardDomainVO Data Structure.
///
[Serializable]
public class CardDomainVO : AopObject
{
///
/// 值域域名的描述值,固定为”金融”
///
[JsonProperty("description")]
public string Description { get; set; }
///
/// 值域域名,固定为“FINANCE”
///
[JsonProperty("domain_name")]
public string DomainName { get; set; }
}
}