blob: 0c51e7564daf448b48a31f3353f0831b1c0584da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Converter;
namespace Gestor.Model.Common;
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum BandeiraCartao
{
[OldValue("1")]
[Description("VISA")]
Visa = 1,
[OldValue("2")]
[Description("MASTERCARD")]
Master,
[OldValue("3")]
[Description("ELO")]
Elo,
[OldValue("4")]
[Description("AMERICAN EXPRESS")]
AmericanExpress,
[OldValue("5")]
[Description("HIPERCARD")]
Hipercard,
[OldValue("6")]
[Description("DINERS CLUB")]
Diners,
[OldValue("7")]
[Description("SOROCRED")]
Sorocred
}
|