NewGaoKaoApi/PaymentSDK/AliPay/Domain/MerchantMenber.cs

37 lines
815 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>
/// MerchantMenber Data Structure.
/// </summary>
[Serializable]
public class MerchantMenber : AopObject
{
/// <summary>
/// 生日 yyyy-MM-dd
/// </summary>
[XmlElement("birth")]
public string Birth { get; set; }
/// <summary>
/// 手机号
/// </summary>
[XmlElement("cell")]
public string Cell { get; set; }
/// <summary>
/// 性别MALEFEMALE
/// </summary>
[XmlElement("gende")]
public string Gende { get; set; }
/// <summary>
/// 姓名
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
}
}