using Gestor.Model.Attributes; using Gestor.Model.Converter; using System; using System.ComponentModel; namespace Gestor.Model.Common { [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum TipoDocumento { [Description("CPF/CNPJ")] [OldValue("0")] Cpf, [Description("RNE")] [OldValue("1")] Rne, [Description("CEI")] [OldValue("2")] Cei, [Description("CAEPF")] [OldValue("3")] Caepf } }