using System; using System.Runtime.CompilerServices; namespace Gestor.Model.CalculoWeb.VidaIndividual { public class Profissao { public string Chave { get; set; } public int Id { get; set; } public int Seguradora { get; set; } public string Valor { get; set; } public Profissao() { } } }