Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 85b8834f

Přidáno uživatelem Vojtěch Bartička před asi 2 roky(ů)

Added info about final annotation to GET /documents

Zobrazit rozdíly:

Backend/Models/Documents/DocumentListInfo.cs
1
using Models.Users;
1
using Models.Enums;
2
using Models.Users;
2 3
using System;
3 4
using System.Collections.Generic;
4 5
using System.Linq;
......
7 8

  
8 9
namespace Models.Documents;
9 10

  
10
# nullable disable
11 11
public class DocumentListInfo
12 12
{
13 13
    public Guid Id { get; set; }
......
15 15
    public int Length { get; set; }
16 16
    public int RequiredAnnotations { get; set; }
17 17
    public List<DocumentUserInfo> AnnotatingUsers { get; set; } = new();
18
    public bool FinalizedExists { get; set; }
19
    public EState? FinalizedState { get; set; }
20
    public List<DocumentAnnotationInfo>? FinalAnnotations { get; set; }
18 21
}

Také k dispozici: Unified diff