18 lines
525 B
C#
18 lines
525 B
C#
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 Paragraph_num { get; set; }
|
|
public int Sentence_offset { get; set; }
|
|
public List<CorrectedContent> Diffs { get; set; }
|
|
}
|
|
}
|