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