19 lines
392 B
C#
19 lines
392 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// LabelContext Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class LabelContext : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 标签组发圈人的单个过滤器信息
|
|
/// </summary>
|
|
[XmlElement("a")]
|
|
public LabelFilter A { get; set; }
|
|
}
|
|
}
|