summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios.Fechamento/Fechamentos.cs
blob: ddc667d7b09012740f43c33eed6fb531a2cb3925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections.ObjectModel;

namespace Gestor.Model.Domain.Relatorios.Fechamento;

public class Fechamentos
{
	public string Title { get; set; }

	public ObservableCollection<Fechamento> Fechamento { get; set; }

	public bool Comparativo { get; set; }
}