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