using System; using System.Collections.Generic; namespace Gestor.Model.Domain.Financeiro.Relatorios; public class FiltroFinanceiro { public DateTime Inicio { get; set; } public DateTime Fim { get; set; } public List Centro { get; set; } public List Plano { get; set; } public List Planos { get; set; } public List Conta { get; set; } public string Referencia { get; set; } }