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