summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/AtividadeDb.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/AtividadeDb.cs')
-rw-r--r--Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/AtividadeDb.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/AtividadeDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/AtividadeDb.cs
new file mode 100644
index 0000000..6b5c04f
--- /dev/null
+++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/AtividadeDb.cs
@@ -0,0 +1,25 @@
+using Gestor.Infrastructure.Entities.Generic;
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Infrastructure.Entities.Common
+{
+ public class AtividadeDb : EntityBase
+ {
+ public virtual string Cnac
+ {
+ get;
+ set;
+ }
+
+ public virtual string Nome
+ {
+ get;
+ set;
+ }
+
+ public AtividadeDb()
+ {
+ }
+ }
+} \ No newline at end of file