blob: 7ddf8a54476fe0bfef29d86dbb919b94966a61a2 (
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 Sinal
{
[Description("CRÉDITO")]
[OldValue("0")]
Credito,
[Description("DÉBITO")]
[OldValue("1")]
Debito
}
}
|