summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.API/UsuarioCentralSegurado.cs
blob: 4bf1a8b86aee2452772bd0d44f5f1a91a1780675 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
namespace Gestor.Model.API;

public class UsuarioCentralSegurado
{
	public string Id { get; set; } = string.Empty;


	public string Serial { get; set; }

	public long FornecedorId { get; set; }

	public bool Admin { get; set; }

	public long IdEmpresa { get; set; } = 1L;


	public string Nome { get; set; }

	public string Email { get; set; }

	public string Documento { get; set; }

	public string Telefone { get; set; }

	public string Cep { get; set; }

	public string Rua { get; set; }

	public string Numero { get; set; }

	public string Bairro { get; set; }

	public string Cidade { get; set; }

	public string Estado { get; set; }

	public string Senha { get; set; }

	public string Corretora { get; set; }

	public string UriCorretora { get; set; }
}