diff options
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Seguros/ResponsavelAssinaturaDb.cs')
| -rw-r--r-- | Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Seguros/ResponsavelAssinaturaDb.cs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Seguros/ResponsavelAssinaturaDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Seguros/ResponsavelAssinaturaDb.cs new file mode 100644 index 0000000..b8b62aa --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Seguros/ResponsavelAssinaturaDb.cs @@ -0,0 +1,37 @@ +using Gestor.Infrastructure.Entities.Generic;
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Infrastructure.Entities.Seguros
+{
+ public class ResponsavelAssinaturaDb : EntityBase
+ {
+ public virtual string DocumentoResponsavel
+ {
+ get;
+ set;
+ }
+
+ public virtual string EmailResponsavel
+ {
+ get;
+ set;
+ }
+
+ public virtual long IdCliente
+ {
+ get;
+ set;
+ }
+
+ public virtual string NomeResponsavel
+ {
+ get;
+ set;
+ }
+
+ public ResponsavelAssinaturaDb()
+ {
+ }
+ }
+}
\ No newline at end of file |