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 Profissoes { get; set; } public string Profissao { get; set; } }