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