aswi20220x00-gitlab/Backend/Models/Documents/DocumentListInfo.cs @ d7167305
1 |
using Models.Users; |
---|---|
2 |
using System; |
3 |
using System.Collections.Generic; |
4 |
using System.Linq; |
5 |
using System.Text; |
6 |
using System.Threading.Tasks; |
7 |
|
8 |
namespace Models.Documents; |
9 |
|
10 |
# nullable disable |
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<UserInfo> AnnotatingUsers { get; set; } = new(); |
18 |
}
|