using System.Collections.Generic; namespace UtilLib { public class DocumentCorrectItem { public string Key { get; set; } public string Insert { get; set; } public string New_text { get; set; } public int Insert_len { get; set; } public int Offset { get; set; } public int Paragraph_offset { get; set; } public int Sentence_offset { get; set; } public List Diffs { get; set; } } }