18 lines
368 B
C#
18 lines
368 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayOpenPublicGisQueryModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AlipayOpenPublicGisQueryModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 该用户的userId
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("user_id")]
|
||
|
|
public string UserId { get; set; }
|
||
|
|
}
|
||
|
|
}
|