summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Common/SubTipo.cs
blob: 9b3f864b203a3ad1a0abaa3ea5cf28447d536c4b (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
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Converter;

namespace Gestor.Model.Common;

[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum SubTipo
{
	[OldValue("1")]
	[Description("PARCELA NORMAL")]
	ParcelaNormal = 1,
	[OldValue("2")]
	[Description("RESTITUIÇÃO")]
	Restituicao,
	[OldValue("3")]
	[Description("CRÉDITO")]
	Credito,
	[OldValue("4")]
	[Description("CUSTO DE APÓLICE")]
	Custo,
	[OldValue("5")]
	[Description("CARTÃO DE CRÉDITO")]
	Cartao,
	[OldValue("6")]
	[Description("ACERTO DE COMISSÃO")]
	Acerto
}