using System; namespace Gestor.Model.Domain.Relatorios; public class FiltroPersonalizado { public int Id { get; set; } public string Nome { get; set; } public string Propriedade { get; set; } public Type Tipo { get; set; } public string ValorIncial { get; set; } public string ValorFinal { get; set; } public string Descricao { get; set; } public bool SemValor { get; set; } public bool Diferente { get; set; } }