namespace UtilLib
{
public class CorrectedContent
{
///
/// 校对类别()
///
public string tag { get; set; }
///
/// 校对原始文本
///
public string origin { get; set; }
///
/// 校对文本
///
public string text { get; set; }
///
/// 校对项在句子中的开始位置
///
public int start { get; set; }
///
/// 校对项在句子中的结束位置
///
public int end { get; set; }
///
/// 校对项ID
///
public int id { get; set; }
///
/// 校对项索引
///
public int idx { get; set; }
///
/// 校对所属分类
///
public int type { get; set; }
///
/// 校对状态
///
public int isAccept { get; set; }
///
/// 校对项颜色
///
public string color { get; set; }
}
}