NewGaoKaoApi/PaymentSDK/AliPay/Domain/CardDomainVO.cs

25 lines
592 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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