16 lines
348 B
C#
16 lines
348 B
C#
using Newtonsoft.Json;
|
||
|
||
namespace Alipay.AopSdk.Core.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayPlatformUseridGetResponse.
|
||
/// </summary>
|
||
public class AlipayPlatformUseridGetResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// id字典,key为openId,value为userId
|
||
/// </summary>
|
||
[JsonProperty("dict")]
|
||
public string Dict { get; set; }
|
||
}
|
||
} |