blob: 0f451f91bc4fe2959c1ce8a81a2d874c1569ce53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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
}
}
|