using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayOpenPublicGisQueryModel Data Structure.
///
[Serializable]
public class AlipayOpenPublicGisQueryModel : AopObject
{
///
/// 该用户的userId
///
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}