blob: 6854ac0f2dc70daff1293f14c6b0b0ad9a32922c (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System.Collections.ObjectModel;
namespace Gestor.Model.Domain.Relatorios.Pagamento;
public class PagamentoSintetico
{
public string Titulo { get; set; }
public ObservableCollection<AgrupamentoPagamentoSintetico> Agrupamento { get; set; }
}
|