diff options
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/ProfissaoDb.cs')
| -rw-r--r-- | Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/ProfissaoDb.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/ProfissaoDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/ProfissaoDb.cs new file mode 100644 index 0000000..15d2d47 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/ProfissaoDb.cs @@ -0,0 +1,31 @@ +using Gestor.Infrastructure.Entities.Generic;
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Infrastructure.Entities.Common
+{
+ public class ProfissaoDb : EntityBase
+ {
+ public virtual string Aniversario
+ {
+ get;
+ set;
+ }
+
+ public virtual string Codigo
+ {
+ get;
+ set;
+ }
+
+ public virtual string Nome
+ {
+ get;
+ set;
+ }
+
+ public ProfissaoDb()
+ {
+ }
+ }
+}
\ No newline at end of file |