blob: 4f5d04b15c9fb65688e699e4f69d3d14da88e2b2 (
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.Attributes;
using Gestor.Model.Converter;
namespace Gestor.Model.Common;
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum TipoTelaInicial
{
[OldValue("0")]
[Description("CONSULTA GERAL")]
Consulta,
[OldValue("1")]
[Description("PAINEL B.I.")]
PainelBi,
[OldValue("2")]
[Description("FINANCEIRO")]
Financeiro
}
|