diff options
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/AtividadeDb.cs')
| -rw-r--r-- | Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/AtividadeDb.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/AtividadeDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/AtividadeDb.cs new file mode 100644 index 0000000..6b5c04f --- /dev/null +++ b/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 |