summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.CalculoWeb.Condominio/QuestionarioCondominio.cs
blob: b2c4e74f4214181054647fc2afb93211c6d24598 (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
namespace Gestor.Model.CalculoWeb.Condominio;

public class QuestionarioCondominio
{
	public string Ocupacao { get; set; }

	public string Estrutura { get; set; }

	public string AreaComercial { get; set; }

	public string ImovelTombado { get; set; }

	public string AreaConstruida { get; set; }

	public string AnoConstrucao { get; set; }

	public string Funcionarios { get; set; }

	public string Blocos { get; set; }

	public string Elevadores { get; set; }

	public string Pavimentos { get; set; }

	public string EquipamentoSeguranca { get; set; }

	public string EquipamentoIncendio { get; set; }

	public string Desmoronamento { get; set; }

	public int Id { get; set; }
}