NewGaoKaoApi/PaymentSDK/AliPay/Domain/InfoSource.cs

25 lines
597 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>
/// InfoSource Data Structure.
/// </summary>
[Serializable]
public class InfoSource : AopObject
{
/// <summary>
/// 儿童信息来源的类型目前支持name
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
/// <summary>
/// 信息来源的取值比如type为name时value对应儿童的姓名
/// </summary>
[XmlElement("value")]
public string Value { get; set; }
}
}