aswi20220x00-gitlab/Backend/Models/Annotations/AnnotationInfo.cs @ 5593c10b
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 DocumentText { get; set; } |
14 |
public EState State { get; set; } |
15 |
public EDocumentType Type { get; set; } |
16 |
public string Note { get; set; } |
17 |
public List<TagInstanceInfo> TagInstances { get; set; } = new(); |
18 |
}
|
19 |
}
|