ai_office_plugin/util-lib/DocumentCorrectItem.cs
2024-08-14 22:14:37 +08:00

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; }
}
}