blob: c1235901ebf4a93831e4d0a616f66009a1a3d75b (
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
|
using System.ComponentModel;
using Gestor.Model.Converter;
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
}
|