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