1
|
using Models.Enums;
|
2
|
using Models.Tags;
|
3
|
using System;
|
4
|
using System.Collections.Generic;
|
5
|
using System.Linq;
|
6
|
using System.Text;
|
7
|
using System.Threading.Tasks;
|
8
|
|
9
|
namespace Models.Annotations
|
10
|
{
|
11
|
public class AnnotationInfo
|
12
|
{
|
13
|
public string SourceDocumentContent { get; set; }
|
14
|
public string DocumentToRender { get; set; }
|
15
|
public int[] TagStartPositions { get; set; }
|
16
|
public int[] TagLengths { get; set; }
|
17
|
public EState State { get; set; }
|
18
|
public EDocumentType Type { get; set; }
|
19
|
public string Note { get; set; }
|
20
|
public List<TagInstanceInfo> TagInstances { get; set; } = new();
|
21
|
}
|
22
|
}
|