Projekt

Obecné

Profil

Stáhnout (450 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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<DocumentUserInfo> AnnotatingUsers { get; set; } = new();
18
}
(3-3/8)