blob: 51b17add8e33ef356a06e4452fcebccf19ff9c95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
namespace Gestor.Model.API;
public class UserSso
{
public string Id { get; set; }
public string Name { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string Serial { get; set; }
public string CustomerDocument { get; set; }
public long IdEmpresa { get; set; }
public string Document { get; set; }
public string Email { get; set; }
public bool IsDeleted { get; set; }
public string Phone { get; set; }
}
|