blob: b62c89d1419e0f3f63d86d0f556e5c0a928fe2e2 (
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
29
30
|
using Gestor.Model.Attributes;
using Gestor.Model.Converter;
using System;
using System.ComponentModel;
namespace Gestor.Model.Common
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum Localizacao
{
[Description("OUTROS")]
[OldValue("1")]
Outros,
[Description("AEROPORTO")]
[OldValue("2")]
Aeroporto,
[Description("CEASA/MERCADO")]
[OldValue("3")]
Ceasa,
[Description("CONDOMÍNIO COMERCIAL")]
[OldValue("4")]
CondominioComercial,
[Description("SHOPPING")]
[OldValue("5")]
Shopping,
[Description("SUPERMERCADO")]
[OldValue("6")]
Supermercado
}
}
|