Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayPlatformUseridGetModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

20 lines
408 B
C#

using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayPlatformUseridGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPlatformUseridGetModel : AopObject
{
/// <summary>
/// openId的列表
/// </summary>
[JsonProperty("open_ids")]
public List<string> OpenIds { get; set; }
}
}