using Gestor.Model.Attributes; using Gestor.Model.Converter; using System; using System.ComponentModel; namespace Gestor.Model.Common { [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum TipoRecibo { [Description("PAGAMENTO")] [OldValue("0")] Pagamento, [Description("RECEBIMENTO")] [OldValue("1")] Recebimento } }