31 lines
642 B
C#
31 lines
642 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// PublicLabel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class PublicLabel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 标签用户量
|
|
/// </summary>
|
|
[XmlElement("count")]
|
|
public long Count { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标签编号
|
|
/// </summary>
|
|
[XmlElement("id")]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标签名称
|
|
/// </summary>
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|