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