1
|
using Models.Enums;
|
2
|
using Models.Users;
|
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.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
|
public List<DocumentUserInfo> AnnotatingUsers { get; set; } = new();
|
18
|
public bool FinalizedExists { get; set; }
|
19
|
public Guid? FinalizedAnnotationId { get; set; }
|
20
|
public EState? FinalizedState { get; set; }
|
21
|
public List<DocumentAnnotationInfo>? FinalAnnotations { get; set; }
|
22
|
}
|