diff options
Diffstat (limited to 'Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/SinteticoMetaSeguradora.cs')
| -rw-r--r-- | Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/SinteticoMetaSeguradora.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/SinteticoMetaSeguradora.cs b/Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/SinteticoMetaSeguradora.cs new file mode 100644 index 0000000..c196b87 --- /dev/null +++ b/Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/SinteticoMetaSeguradora.cs @@ -0,0 +1,27 @@ +using System;
+using System.ComponentModel;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.Domain.Relatorios.MetaSeguradora
+{
+ public class SinteticoMetaSeguradora
+ {
+ [Description("META ATINGIR")]
+ public decimal MetaAtingir
+ {
+ get;
+ set;
+ }
+
+ [Description("META CUMPRIDA")]
+ public decimal MetaCumprida
+ {
+ get;
+ set;
+ }
+
+ public SinteticoMetaSeguradora()
+ {
+ }
+ }
+}
\ No newline at end of file |