using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// SpiDetectionTask Data Structure.
///
[Serializable]
public class SpiDetectionTask : AopObject
{
///
/// 待检测文本内容
///
[XmlElement("content")]
public string Content { get; set; }
///
/// 检测任务编号
///
[XmlElement("data_id")]
public string DataId { get; set; }
}
}