using Gestor.Model.Attributes; using Gestor.Model.Converter; using System; using System.ComponentModel; namespace Gestor.Model.Common { [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum TipoResidencia { [Description("CASA")] [OldValue("1")] Casa, [Description("APARTAMENTO")] [OldValue("2")] Apartamento, [Description("CONDOMÍNIO")] [OldValue("3")] Condominio, [Description("OUTROS")] [OldValue("4")] Outros } }