summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/SinteticoPagamento.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/SinteticoPagamento.cs')
-rw-r--r--Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/SinteticoPagamento.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/SinteticoPagamento.cs b/Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/SinteticoPagamento.cs
new file mode 100644
index 0000000..204f642
--- /dev/null
+++ b/Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/SinteticoPagamento.cs
@@ -0,0 +1,29 @@
+using System.ComponentModel;
+using Gestor.Model.Attributes;
+
+namespace Gestor.Model.Domain.Relatorios.Pagamento;
+
+public class SinteticoPagamento
+{
+ public string Descricao { get; set; }
+
+ [Tipo("QUANTIDADE")]
+ [Description("QUANTIDADE DE APÓLICES")]
+ public int Apolices { get; set; }
+
+ [Tipo("QUANTIDADE")]
+ [Description("QUANTIDADE DE ENDOSSOS")]
+ public int Endossos { get; set; }
+
+ [Tipo("QUANTIDADE")]
+ [Description("TOTAL DE DOCUMENTOS")]
+ public int Total { get; set; }
+
+ [Tipo("VALOR")]
+ [Description("SOMA REPASSE BRUTO")]
+ public decimal RepasseBruto { get; set; }
+
+ [Tipo("VALOR")]
+ [Description("SOMA REPASSE LIQUIDO")]
+ public decimal RepasseLiquido { get; set; }
+}