using System.ComponentModel; using Gestor.Model.Converter; namespace Gestor.Model.Common; [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum FiltroLancamento { [Description("VENCIMENTO")] Vencimento, [Description("BAIXA")] Baixa, [Description("PAGAMENTO")] Pagamento, [Description("FORNECEDOR")] Fornecedor, [Description("LANÇAMENTO")] Lancamento, [Description("PERSONALIZADO")] Personalizado }