using System; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace Gestor.Model.CalculoWeb.VidaIndividual { public class QuestionarioVidaIndividual { public float Altura { get; set; } public string Aposentado { get; set; } public string Esporte { get; set; } public string Fumante { get; set; } public int? Id { get; set; } public int? Peso { get; set; } public string Profissao { get; set; } public List Profissoes { get; set; } public decimal? RendaMensal { get; set; } public QuestionarioVidaIndividual() { } } }