using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// LabelForOpenapi Data Structure.
///
[Serializable]
public class LabelForOpenapi : AopObject
{
///
/// 标记类型
///
[XmlElement("label_type")]
public string LabelType { get; set; }
///
/// 标记类型的值
///
[XmlElement("value")]
public string Value { get; set; }
}
}