summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/Pagamento.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/Pagamento.cs')
-rw-r--r--Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/Pagamento.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/Pagamento.cs b/Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/Pagamento.cs
new file mode 100644
index 0000000..d50cacf
--- /dev/null
+++ b/Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/Pagamento.cs
@@ -0,0 +1,14 @@
+using System.Collections.ObjectModel;
+
+namespace Gestor.Model.Domain.Relatorios.Pagamento;
+
+public class Pagamento
+{
+ public string Title { get; set; }
+
+ public ObservableCollection<DadosRelatorio> Dados { get; set; }
+
+ public AgrupamentoVendedor Vendedores { get; set; }
+
+ public ObservableCollection<Sintetico> Sintetico { get; set; }
+}