summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs')
-rw-r--r--Codemerx/Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs37
1 files changed, 37 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs b/Codemerx/Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs
new file mode 100644
index 0000000..49bdf53
--- /dev/null
+++ b/Codemerx/Gestor.Model/Model.Domain.Relatorios/Pagamento/AgrupamentoPagamentoSintetico.cs
@@ -0,0 +1,37 @@
+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