summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Common/TipoTelaInicial.cs
blob: 336835b3c580014d52f71bd52748154cd0ccbec8 (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.Attributes;
using Gestor.Model.Converter;
using System;
using System.ComponentModel;

namespace Gestor.Model.Common
{
	[TypeConverter(typeof(EnumDescriptionTypeConverter))]
	public enum TipoTelaInicial
	{
		[Description("CONSULTA GERAL")]
		[OldValue("0")]
		Consulta,
		[Description("PAINEL B.I.")]
		[OldValue("1")]
		PainelBi,
		[Description("FINANCEIRO")]
		[OldValue("2")]
		Financeiro
	}
}