30 lines
554 B
C#
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; }
|
||
|
|
}
|
||
|
|
}
|