summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs')
-rw-r--r--Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs37
1 files changed, 37 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs
new file mode 100644
index 0000000..732fdfc
--- /dev/null
+++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs
@@ -0,0 +1,37 @@
+using Gestor.Infrastructure.Entities.Generic;
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Infrastructure.Entities.Ferramentas
+{
+ public class FaseDb : EntityBase
+ {
+ public virtual string Descricao
+ {
+ get;
+ set;
+ }
+
+ public virtual DateTime? Expiracao
+ {
+ get;
+ set;
+ }
+
+ public virtual string Titulo
+ {
+ get;
+ set;
+ }
+
+ public virtual TrilhaDb Trilha
+ {
+ get;
+ set;
+ }
+
+ public FaseDb()
+ {
+ }
+ }
+} \ No newline at end of file