Projekt

Obecné

Profil

Stáhnout (694 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
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
        /// <summary>
13
        /// User Id
14
        /// </summary>
15
        public Guid Id { get; set; }
16
        public string Username { get; set; }
17
        public string Name { get; set; }
18
        public string Surname { get; set; }
19

    
20
        /// <summary>
21
        /// State of the annotation
22
        /// </summary>
23
        public EState State { get; set; }
24
        /// <summary>
25
        /// Id of the annotation
26
        /// </summary>
27
        public Guid AnnotationId { get; set; }
28
    }
29
}
(3-3/6)