using Newtonsoft.Json; namespace UtilLib { public class CorrectItem { /// /// 校对类别(r 替换 d 删除 i 插入新增) /// 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; } /// /// 标识类型index(字符型数字) /// public string Index { get; set; } /// /// 标识类型(校对所属分类) /// public string Type { get; set; } /// /// 校对状态 /// [JsonProperty("isAccept")] public int IsAccept { get; set; } /// /// 校对项颜色 /// public string Color { get; set; } /// /// 标识类型(校对所属分类) /// public string Addition { get; set; } } }