summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Domain.Relatorios/CartaoSegurado.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Model/Model.Domain.Relatorios/CartaoSegurado.cs')
-rw-r--r--Gestor.Model/Model.Domain.Relatorios/CartaoSegurado.cs60
1 files changed, 60 insertions, 0 deletions
diff --git a/Gestor.Model/Model.Domain.Relatorios/CartaoSegurado.cs b/Gestor.Model/Model.Domain.Relatorios/CartaoSegurado.cs
new file mode 100644
index 0000000..e0edb18
--- /dev/null
+++ b/Gestor.Model/Model.Domain.Relatorios/CartaoSegurado.cs
@@ -0,0 +1,60 @@
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.Domain.Relatorios
+{
+ public class CartaoSegurado
+ {
+ public string Apolice
+ {
+ get;
+ set;
+ }
+
+ public string Assistencia
+ {
+ get;
+ set;
+ }
+
+ public string Item
+ {
+ get;
+ set;
+ }
+
+ public string LinkApolice
+ {
+ get;
+ set;
+ }
+
+ public string Nome
+ {
+ get;
+ set;
+ }
+
+ public string Seguradora
+ {
+ get;
+ set;
+ }
+
+ public string TelefoneCorretor
+ {
+ get;
+ set;
+ }
+
+ public string Vigencia
+ {
+ get;
+ set;
+ }
+
+ public CartaoSegurado()
+ {
+ }
+ }
+} \ No newline at end of file