using System.ComponentModel; using Gestor.Model.Attributes; using Gestor.Model.Converter; namespace Gestor.Model.Common; [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum FormaRepasse { [OldValue("1")] [Description("CONFORME O RECEBIMENTO")] Recebimento = 1, [OldValue("2")] [Description("SEMPRE À VISTA")] Vista, [OldValue("3")] [Description("SEMPRE À PRAZO")] Prazo }