summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Common/SinteticoFinanceiroTipo.cs
blob: 1a4a8a9cb2966c3c928a8ae90cdf664ba992d031 (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.Converter;

namespace Gestor.Model.Common;

[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum SinteticoFinanceiroTipo
{
	[Description("PLANO DE CONTAS")]
	Plano,
	[Description("CENTRO DE CUSTO")]
	Centro,
	[Description("FORNECEDOR")]
	Fornecedor,
	[Description("CONTA CORRENTE")]
	Conta,
	[Description("PLANO")]
	PlanoRaiz
}