diff options
Diffstat (limited to 'Gestor.Model/Model.Domain.Relatorios/Pagamento/PagamentoSintetico.cs')
| -rw-r--r-- | Gestor.Model/Model.Domain.Relatorios/Pagamento/PagamentoSintetico.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Gestor.Model/Model.Domain.Relatorios/Pagamento/PagamentoSintetico.cs b/Gestor.Model/Model.Domain.Relatorios/Pagamento/PagamentoSintetico.cs new file mode 100644 index 0000000..ef78ddc --- /dev/null +++ b/Gestor.Model/Model.Domain.Relatorios/Pagamento/PagamentoSintetico.cs @@ -0,0 +1,25 @@ +using System;
+using System.Collections.ObjectModel;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.Domain.Relatorios.Pagamento
+{
+ public class PagamentoSintetico
+ {
+ public ObservableCollection<AgrupamentoPagamentoSintetico> Agrupamento
+ {
+ get;
+ set;
+ }
+
+ public string Titulo
+ {
+ get;
+ set;
+ }
+
+ public PagamentoSintetico()
+ {
+ }
+ }
+}
\ No newline at end of file |