1 |
aa425887
|
Vojtěch Bartička
|
using Models.Users;
|
2 |
|
|
using System;
|
3 |
f053c1b6
|
Vojtěch Bartička
|
using System.Collections.Generic;
|
4 |
|
|
using System.Linq;
|
5 |
|
|
using System.Text;
|
6 |
|
|
using System.Threading.Tasks;
|
7 |
|
|
|
8 |
|
|
namespace Models.Documents;
|
9 |
|
|
|
10 |
11f447b9
|
Vojtěch Bartička
|
# nullable disable
|
11 |
f053c1b6
|
Vojtěch Bartička
|
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 |
aa425887
|
Vojtěch Bartička
|
public List<UserInfo> AnnotatingUsers { get; set; } = new();
|
18 |
f053c1b6
|
Vojtěch Bartička
|
}
|