NewGaoKaoApi/PaymentSDK/AliPay/Domain/Address.cs

37 lines
828 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>
/// Address Data Structure.
/// </summary>
[Serializable]
public class Address : AopObject
{
/// <summary>
/// city市名
/// </summary>
[XmlElement("city")]
public string City { get; set; }
/// <summary>
/// county用于区、县的描述
/// </summary>
[XmlElement("county")]
public string County { get; set; }
/// <summary>
/// detail地址详情
/// </summary>
[XmlElement("detail")]
public string Detail { get; set; }
/// <summary>
/// province省份
/// </summary>
[XmlElement("province")]
public string Province { get; set; }
}
}