18 lines
379 B
C#
18 lines
379 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayBossProdMyTestQueryResponse.
|
|
/// </summary>
|
|
public class AlipayBossProdMyTestQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 经度
|
|
/// </summary>
|
|
[XmlElement("longitude")]
|
|
public string Longitude { get; set; }
|
|
}
|
|
}
|