From 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 10:38:18 -0300 Subject: chore: location --- .../MetaSeguradora/MetaSeguradoraRelatorio.cs | 51 ---------------------- .../MetaSeguradora/SinteticoMetaSeguradora.cs | 27 ------------ 2 files changed, 78 deletions(-) delete mode 100644 Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/MetaSeguradoraRelatorio.cs delete mode 100644 Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/SinteticoMetaSeguradora.cs (limited to 'Gestor.Model/Model.Domain.Relatorios/MetaSeguradora') 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 diff --git a/Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/SinteticoMetaSeguradora.cs b/Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/SinteticoMetaSeguradora.cs deleted file mode 100644 index c196b87..0000000 --- a/Gestor.Model/Model.Domain.Relatorios/MetaSeguradora/SinteticoMetaSeguradora.cs +++ /dev/null @@ -1,27 +0,0 @@ -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 -- cgit v1.2.3