Revize aa425887
Přidáno uživatelem Vojtěch Bartička před asi 3 roky(ů)
Backend/Models/Documents/DocumentListInfo.cs | ||
---|---|---|
1 |
using System; |
|
1 |
using Models.Users; |
|
2 |
using System; |
|
2 | 3 |
using System.Collections.Generic; |
3 | 4 |
using System.Linq; |
4 | 5 |
using System.Text; |
... | ... | |
11 | 12 |
public Guid Id { get; set; } |
12 | 13 |
public string Name { get; set; } |
13 | 14 |
public int Length { get; set; } |
14 |
|
|
15 | 15 |
public int RequiredAnnotations { get; set; } |
16 |
public List<UserInfo> AnnotatingUsers { get; set; } = new(); |
|
16 | 17 |
} |
Backend/Models/Users/UserInfo.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
6 |
|
|
7 |
namespace Models.Users |
|
8 |
{ |
|
9 |
public class UserInfo |
|
10 |
{ |
|
11 |
public Guid Id { get; set; } |
|
12 |
public string Username { get; set; } |
|
13 |
public string Name { get; set; } |
|
14 |
public string Surname { get; set; } |
|
15 |
} |
|
16 |
} |
Také k dispozici: Unified diff
Modified DocumentListInfo
Added of UserInfo annotating users