blob: 0eebaf55f45753a39e745c2eadd135aa1927d3f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using Gestor.Model.Converter;
using System;
using System.ComponentModel;
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
}
}
|