using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KeyWordDTO Data Structure.
///
[Serializable]
public class KeyWordDTO : AopObject
{
///
/// 垃圾类别
///
[XmlElement("category")]
public string Category { get; set; }
///
/// 垃圾名称
///
[XmlElement("key_word")]
public string KeyWord { get; set; }
///
/// 置信度打分
///
[XmlElement("score")]
public string Score { get; set; }
}
}