blob: 0805aa227056cb911dab4e153ea485f59bc38d19 (
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.Residencia;
public class EnderecoResidencia
{
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; }
}
|