using Gestor.Model.Converter; using System; using System.ComponentModel; 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 } }