using Gestor.Model.Converter; using System; using System.ComponentModel; namespace Gestor.Model.Common { [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum Agrupamento { [Description("SEM DIVISÃO")] SemDivisoes, [Description("SEGURADORA")] Seguradora, [Description("RAMO")] Ramo, [Description("VENDEDOR")] Vendedor, [Description("ESTIPULANTE")] Estipulante, [Description("SITUAÇÃO")] Situacao } }