blob: 562f79851b7730da3b1f3e70800b58a892e58f97 (
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
31
|
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Converter;
namespace Gestor.Model.Common;
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum TipoEndereco
{
[OldValue("1")]
[Description("OUTROS")]
Outros = 1,
[OldValue("2")]
[Description("CORRESPONDÊNCIA")]
Correspondencia,
[OldValue("3")]
[Description("RESIDENCIAL")]
Residencial,
[OldValue("4")]
[Description("COMERCIAL")]
Comercial,
[OldValue("5")]
[Description("RECADO")]
Recado,
[OldValue("6")]
[Description("COBRANÇA")]
Cobranca,
[OldValue("7")]
[Description("FINANCEIRO")]
Financeiro
}
|