blob: 83573bc5093d7e27fab895c03ec4b2a9f20e849d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Gestor.Model.CalculoWeb.VidaIndividual;
public class Profissao
{
public int Id { get; set; }
public int Seguradora { get; set; }
public string Chave { get; set; }
public string Valor { get; set; }
}
|