20 lines
442 B
C#
20 lines
442 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UtilLib
|
|
{
|
|
public class Correct
|
|
{
|
|
public string Key { get; set; }
|
|
public int Offset { get; set; }
|
|
public string New_text { get; set; }
|
|
public string Insert { get; set; }
|
|
public int Insert_len { get; set; }
|
|
|
|
public List<DiffItem> Diffs { get; set; }
|
|
}
|
|
}
|