1 |
85b8834f
|
Vojtěch Bartička
|
using Models.Enums;
|
2 |
|
|
using Models.Users;
|
3 |
aa425887
|
Vojtěch Bartička
|
using System;
|
4 |
f053c1b6
|
Vojtěch Bartička
|
using System.Collections.Generic;
|
5 |
|
|
using System.Linq;
|
6 |
|
|
using System.Text;
|
7 |
|
|
using System.Threading.Tasks;
|
8 |
|
|
|
9 |
|
|
namespace Models.Documents;
|
10 |
|
|
|
11 |
|
|
public class DocumentListInfo
|
12 |
|
|
{
|
13 |
|
|
public Guid Id { get; set; }
|
14 |
|
|
public string Name { get; set; }
|
15 |
|
|
public int Length { get; set; }
|
16 |
|
|
public int RequiredAnnotations { get; set; }
|
17 |
3cee56d3
|
Vojtěch Bartička
|
public List<DocumentUserInfo> AnnotatingUsers { get; set; } = new();
|
18 |
85b8834f
|
Vojtěch Bartička
|
public bool FinalizedExists { get; set; }
|
19 |
4ed6b05c
|
Vojtěch Bartička
|
public Guid? FinalizedAnnotationId { get; set; }
|
20 |
85b8834f
|
Vojtěch Bartička
|
public EState? FinalizedState { get; set; }
|
21 |
|
|
public List<DocumentAnnotationInfo>? FinalAnnotations { get; set; }
|
22 |
f053c1b6
|
Vojtěch Bartička
|
}
|