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
|
# nullable disable
|
11
|
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
|
public int FinalizedDocumentsCount { get; set; }
|
18
|
public int InProgressDocumentsCount { get; set; }
|
19
|
public int NewDocumentsCount { get; set; }
|
20
|
public ERole Role { get; set; }
|
21
|
}
|
22
|
}
|