Projekt

Obecné

Profil

Stáhnout (597 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 d845a737 Vojtěch Bartička
using Models.Enums;
2
using System;
3 aa425887 Vojtěch Bartička
using System.Collections.Generic;
4
using System.Linq;
5
using System.Text;
6
using System.Threading.Tasks;
7
8
namespace Models.Users
9
{
10 11f447b9 Vojtěch Bartička
# nullable disable
11 aa425887 Vojtěch Bartička
    public class UserInfo
12
    {
13
        public Guid Id { get; set; }
14
        public string Username { get; set; }
15
        public string Name { get; set; }
16
        public string Surname { get; set; }
17 7dcdd235 Vojtěch Bartička
        public int FinalizedDocumentsCount { get; set; }
18
        public int InProgressDocumentsCount { get; set; }
19
        public int NewDocumentsCount { get; set; }
20 d845a737 Vojtěch Bartička
        public ERole Role { get; set; }
21 aa425887 Vojtěch Bartička
    }
22
}