using System.Collections.ObjectModel; namespace Gestor.Model.Domain.Relatorios.Fechamento; public class Fechamentos { public string Title { get; set; } public ObservableCollection Fechamento { get; set; } public bool Comparativo { get; set; } }