summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Common/TipoTelefone.cs
blob: 284d4ccf173feaa0fe070906d14c7e99e72cd5b7 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Converter;

namespace Gestor.Model.Common;

[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum TipoTelefone
{
	[Tipo("1")]
	[OldValue("1")]
	[Description("RESIDENCIAL")]
	Residencial = 1,
	[Tipo("1")]
	[OldValue("2")]
	[Description("COMERCIAL")]
	Comercial,
	[Tipo("1")]
	[OldValue("3")]
	[Description("CELULAR")]
	Celular,
	[Tipo("1")]
	[OldValue("4")]
	[Description("RADIO")]
	Radio,
	[Tipo("1")]
	[OldValue("5")]
	[Description("RECADO")]
	Recado,
	[Tipo("1")]
	[OldValue("6")]
	[Description("FAX")]
	Fax,
	[Tipo("1")]
	[OldValue("7")]
	[Description("OUTROS")]
	Outros,
	[Tipo("0")]
	[OldValue("8")]
	[Description("INTERNACIONAL")]
	Internacional,
	[Tipo("2")]
	[OldValue("9")]
	[Description("WHATSAPP")]
	Whatsapp,
	[Tipo("0")]
	[OldValue("10")]
	[Description("0800")]
	Gratuita,
	[Tipo("0")]
	[OldValue("11")]
	[Description("0300")]
	TarifaUnica
}