summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios.Pagamento/Pagamento.cs
blob: d50cacf58f88eaee8cad927e517c5aed17f4e4e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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; }
}