ai_office_plugin/util-lib/DocumentCorrectItem.cs
2024-03-29 02:42:25 +08:00

15 lines
379 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 List<CorrectedContent> Diffs { get; set; }
}
}