summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs')
-rw-r--r--Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs b/Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs
deleted file mode 100644
index 49bdf53..0000000
--- a/Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using Gestor.Model.Attributes;
-using System;
-using System.ComponentModel;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Model.Domain.Relatorios.Pagamento
-{
- public class AgrupamentoPagamentoSintetico
- {
- [Description("NOME")]
- public string Nome
- {
- get;
- set;
- }
-
- [Description("REPASSE")]
- [Tipo("VALOR")]
- public decimal Repasse
- {
- get;
- set;
- }
-
- [Description("VALOR LÍQUIDO")]
- [Tipo("VALOR")]
- public decimal VlrLiquido
- {
- get;
- set;
- }
-
- public AgrupamentoPagamentoSintetico()
- {
- }
- }
-} \ No newline at end of file