Projekt

Obecné

Profil

Stáhnout (427 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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
# nullable disable
10
    public class UserInfo
11
    {
12
        public Guid Id { get; set; }
13
        public string Username { get; set; }
14
        public string Name { get; set; }
15
        public string Surname { get; set; }
16
        public int AssignedDocumentsCount { get; set; }
17
    }
18
}
(3-3/4)