24 lines
499 B
C#
24 lines
499 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayOpenPublicPartnerMenuQueryModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AlipayOpenPublicPartnerMenuQueryModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 服务窗id
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("public_id")]
|
||
|
|
public string PublicId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 用户id
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("user_id")]
|
||
|
|
public string UserId { get; set; }
|
||
|
|
}
|
||
|
|
}
|