blob: 17a59fb12defe04fab9f749f26009092674600c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Converter;
namespace Gestor.Model.Common;
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum FormaRepasse
{
[OldValue("1")]
[Description("CONFORME O RECEBIMENTO")]
Recebimento = 1,
[OldValue("2")]
[Description("SEMPRE À VISTA")]
Vista,
[OldValue("3")]
[Description("SEMPRE À PRAZO")]
Prazo
}
|