using Gestor.Model.Attributes; using Gestor.Model.Converter; using System; using System.ComponentModel; namespace Gestor.Model.Common { [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum TipoEndosso { [Description("COM MOVIMENTO DE PRÊMIO")] [OldValue("0")] ComMovimento, [Description("SEM MOVIMENTO DE PRÊMIO")] [OldValue("1")] SemMovimento, [Description("CANCELAMENTO DA APÓLICE")] [OldValue("2")] Cancelamento, [Description("REABILITAÇÃO DA APÓLICE")] [OldValue("3")] Reabilitacao, [Description("PRORROGAÇÃO DE VIGÊNCIA")] [OldValue("4")] Prorrogacao } }