using System.ComponentModel; using Gestor.Model.Attributes; using Gestor.Model.Converter; namespace Gestor.Model.Common; [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum Cor { [OldValue("0")] [Description("SEM INFORMAÇÃO")] OutrosNull, [OldValue("1")] [Description("PRETO")] Preto, [OldValue("2")] [Description("BRANCO")] Branco, [OldValue("3")] [Description("CINZA")] Cinza, [OldValue("4")] [Description("PRATA")] Prata, [OldValue("5")] [Description("VERMELHO")] Vermelho, [OldValue("6")] [Description("AMARELO")] Amarelo, [OldValue("7")] [Description("OURO")] Ouro, [OldValue("8")] [Description("LARANJA")] Laranja, [OldValue("9")] [Description("ROSA")] Rosa, [OldValue("10")] [Description("VERDE")] Verde, [OldValue("11")] [Description("AZUL")] Azul, [OldValue("12")] [Description("VINHO")] Vinho, [OldValue("13")] [Description("MARROM")] Marrom, [OldValue("14")] [Description("BEGE")] Bege, [OldValue("15")] [Description("DOURADO")] Dourado, [OldValue("16")] [Description("OUTROS")] Outros }