blob: dad17efd96cc759c7e1059b08352787b0f022235 (
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
|
using Gestor.Model.Converter;
using System;
using System.ComponentModel;
namespace Gestor.Model.Common
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum TipoTarefa
{
[Description("APÓLICE")]
Apolice,
[Description("NOTAS")]
Notas,
[Description("CLIENTE")]
Cliente,
[Description("PARCELA")]
Parcela,
[Description("SINISTRO")]
Sinistro,
[Description("PROSPECÇÃO")]
Prospeccao,
[Description("META")]
Vendedor,
[Description("SEGURADORA")]
Seguradora,
[Description("AGENDA")]
Agenda
}
}
|