using System.ComponentModel; using Gestor.Model.Converter; namespace Gestor.Model.Common; [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum StatusPagamento { [Description("SEM PENDÊNCIA")] All, [Description("PAGAMENTO PENDENTE")] Pending, [Description("PENDÊNCIA NOTIFICADA")] Notified }