diff options
Diffstat (limited to 'Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/MetaSeguradoraRelatorio.cs')
| -rw-r--r-- | Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/MetaSeguradoraRelatorio.cs | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/MetaSeguradoraRelatorio.cs b/Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/MetaSeguradoraRelatorio.cs deleted file mode 100644 index e48f927..0000000 --- a/Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/MetaSeguradoraRelatorio.cs +++ /dev/null @@ -1,51 +0,0 @@ -using Gestor.Model.Attributes;
-using System;
-using System.ComponentModel;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Model.Domain.Relatorios.MetaSeguradora
-{
- public class MetaSeguradoraRelatorio
- {
- [Tipo("INVALID")]
- public long Id
- {
- get;
- set;
- }
-
- [Description("META ATINGIR")]
- [Tipo("VALOR")]
- public decimal MetaAtingir
- {
- get;
- set;
- }
-
- [Description("META CUMPRIDA")]
- [Tipo("VALOR")]
- public decimal MetaCumprida
- {
- get;
- set;
- }
-
- [Description("SEGURADORA")]
- public string Seguradora
- {
- get;
- set;
- }
-
- [Tipo("INVALID")]
- public bool Selecionado
- {
- get;
- set;
- }
-
- public MetaSeguradoraRelatorio()
- {
- }
- }
-}
\ No newline at end of file |