diff options
Diffstat (limited to 'Codemerx/Gestor.Model/Model.CalculoWeb/VidaIndividual/Profissao.cs')
| -rw-r--r-- | Codemerx/Gestor.Model/Model.CalculoWeb/VidaIndividual/Profissao.cs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.CalculoWeb/VidaIndividual/Profissao.cs b/Codemerx/Gestor.Model/Model.CalculoWeb/VidaIndividual/Profissao.cs new file mode 100644 index 0000000..fd20834 --- /dev/null +++ b/Codemerx/Gestor.Model/Model.CalculoWeb/VidaIndividual/Profissao.cs @@ -0,0 +1,36 @@ +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()
+ {
+ }
+ }
+}
\ No newline at end of file |