blob: da7bd448dfa54c5f23c08df63cd25de7e885bf53 (
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
|
using System.Collections.Generic;
namespace Gestor.Model.CalculoWeb.VidaIndividual;
public class QuestionarioVidaIndividual
{
public int? Id { get; set; }
public int? Peso { get; set; }
public float Altura { get; set; }
public decimal? RendaMensal { get; set; }
public string Fumante { get; set; }
public string Esporte { get; set; }
public string Aposentado { get; set; }
public List<Profissao> Profissoes { get; set; }
public string Profissao { get; set; }
}
|