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