1 |
3cee56d3
|
Vojtěch Bartička
|
using Models.Enums;
|
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.Users
|
9 |
|
|
{
|
10 |
|
|
public class DocumentUserInfo
|
11 |
|
|
{
|
12 |
4b03d2a7
|
Vojtěch Bartička
|
/// <summary>
|
13 |
|
|
/// User Id
|
14 |
|
|
/// </summary>
|
15 |
3cee56d3
|
Vojtěch Bartička
|
public Guid Id { get; set; }
|
16 |
|
|
public string Username { get; set; }
|
17 |
|
|
public string Name { get; set; }
|
18 |
|
|
public string Surname { get; set; }
|
19 |
4b03d2a7
|
Vojtěch Bartička
|
|
20 |
|
|
/// <summary>
|
21 |
|
|
/// State of the annotation
|
22 |
|
|
/// </summary>
|
23 |
3cee56d3
|
Vojtěch Bartička
|
public EState State { get; set; }
|
24 |
4b03d2a7
|
Vojtěch Bartička
|
/// <summary>
|
25 |
|
|
/// Id of the annotation
|
26 |
|
|
/// </summary>
|
27 |
d7a375f5
|
Vojtěch Bartička
|
public Guid AnnotationId { get; set; }
|
28 |
3cee56d3
|
Vojtěch Bartička
|
}
|
29 |
|
|
}
|