Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayPlatformUseridGetModel.cs

20 lines
408 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
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; }
}
}