22 lines
550 B
C#
22 lines
550 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UtilLib
|
|
{
|
|
public class DiffItem
|
|
{
|
|
public string Tag { get; set; }
|
|
public string Origin { get; set; }
|
|
public string Text { get; set; }
|
|
public int Start { get; set; }
|
|
public int End { get; set; }
|
|
public int Id { get; set; }
|
|
public int Idx { get; set; }
|
|
public AcceptEnum IsAccept { get; set; }
|
|
public ProofreadType Type { get; set; }
|
|
}
|
|
}
|