summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Common/Agrupamento.cs
blob: b36c4fc09f29b81ab0b828c5aefbca44a454c95e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using Gestor.Model.Converter;
using System;
using System.ComponentModel;

namespace Gestor.Model.Common
{
	[TypeConverter(typeof(EnumDescriptionTypeConverter))]
	public enum Agrupamento
	{
		[Description("SEM DIVISÃO")]
		SemDivisoes,
		[Description("SEGURADORA")]
		Seguradora,
		[Description("RAMO")]
		Ramo,
		[Description("VENDEDOR")]
		Vendedor,
		[Description("ESTIPULANTE")]
		Estipulante,
		[Description("SITUAÇÃO")]
		Situacao
	}
}