using Gestor.Model.Converter; using System; using System.ComponentModel; namespace Gestor.Model.Common { [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum TipoPerda { [Description("CONSTATAÇÃO")] Constatacao = 1, [Description("PARCIAL")] Parcial = 2, [Description("TOTAL")] Total = 3, [Description("ROUBO/FURTO")] RouboFurto = 4, [Description("MORTE")] Morte = 5, [Description("INVALIDEZ")] Invalidez = 6, [Description("PERDA DE RENDA")] PerdaRenda = 7, [Description("OUTROS")] Outros = 8 } }