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