summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Common/TipoFiltroCliente.cs
blob: a0eb1536a2423202f5938af6172435ef4834a310 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using Gestor.Model.Converter;
using System;
using System.ComponentModel;

namespace Gestor.Model.Common
{
	[TypeConverter(typeof(EnumDescriptionTypeConverter))]
	public enum TipoFiltroCliente
	{
		[Description("NOME OU SOBRENOME")]
		NomeSobrenome,
		[Description("NOME APENAS")]
		Nome,
		[Description("NOME E DOCS")]
		NomeDocumentos
	}
}