Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayOpenPublicLabelUserQueryResponse.cs

16 lines
375 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayOpenPublicLabelUserQueryResponse.
/// </summary>
public class AlipayOpenPublicLabelUserQueryResponse : AopResponse
{
/// <summary>
/// 用户标签id列表以英文逗号分隔
/// </summary>
[JsonProperty("label_ids")]
public string LabelIds { get; set; }
}
}