Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/PublicLabel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

30 lines
554 B
C#

using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// PublicLabel Data Structure.
/// </summary>
[Serializable]
public class PublicLabel : AopObject
{
/// <summary>
/// 标签用户量
/// </summary>
[JsonProperty("count")]
public long Count { get; set; }
/// <summary>
/// 标签编号
/// </summary>
[JsonProperty("id")]
public string Id { get; set; }
/// <summary>
/// 标签名称
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
}
}