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 --- .../Pagamento/SinteticoPagamento.cs | 60 ---------------------- 1 file changed, 60 deletions(-) delete mode 100644 Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs (limited to 'Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs') diff --git a/Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs b/Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs deleted file mode 100644 index a3e3604..0000000 --- a/Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs +++ /dev/null @@ -1,60 +0,0 @@ -using Gestor.Model.Attributes; -using System; -using System.ComponentModel; -using System.Runtime.CompilerServices; - -namespace Gestor.Model.Domain.Relatorios.Pagamento -{ - public class SinteticoPagamento - { - [Description("QUANTIDADE DE APÓLICES")] - [Tipo("QUANTIDADE")] - public int Apolices - { - get; - set; - } - - public string Descricao - { - get; - set; - } - - [Description("QUANTIDADE DE ENDOSSOS")] - [Tipo("QUANTIDADE")] - public int Endossos - { - get; - set; - } - - [Description("SOMA REPASSE BRUTO")] - [Tipo("VALOR")] - public decimal RepasseBruto - { - get; - set; - } - - [Description("SOMA REPASSE LIQUIDO")] - [Tipo("VALOR")] - public decimal RepasseLiquido - { - get; - set; - } - - [Description("TOTAL DE DOCUMENTOS")] - [Tipo("QUANTIDADE")] - public int Total - { - get; - set; - } - - public SinteticoPagamento() - { - } - } -} \ No newline at end of file -- cgit v1.2.3