blob: 083cdd1609a5d1fea83ced6021bdc624e8af0559 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System.Collections.ObjectModel;
namespace Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao;
public class PrevisaoPagamentoComissaoSintetico
{
public string Titulo { get; set; }
public ObservableCollection<AgrupamentoSintetico> Agrupamento { get; set; }
}
|