using System; using System.Collections.ObjectModel; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao { public class PrevisaoPagamentoComissaoSintetico { public ObservableCollection Agrupamento { get; set; } public string Titulo { get; set; } public PrevisaoPagamentoComissaoSintetico() { } } }