Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/PublicLabel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +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; }
}
}