blob: bb1731d3d6ec59552140e670871f5ae1a0dbe81c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
namespace Gestor.Model.CalculoWeb.Empresa;
public class EnderecoEmpresa
{
public string Cep { get; set; }
public string Cidade { get; set; }
public string Estado { get; set; }
public string Numero { get; set; }
public string Logradouro { get; set; }
public string Complemento { get; set; }
public string Bairro { get; set; }
public int Id { get; set; }
}
|