summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Common/TipoExtrato.cs
blob: 635277c621c684dec4cad606ab7e0de707cd2076 (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 TipoExtrato
	{
		[Description("SOMENTE CLIENTE")]
		Cliente,
		[Description("APÓLICE SELECIONADA")]
		ApoliceSelecionada,
		[Description("RELAÇÃO DE APÓLICES")]
		RelacaoApolices
	}
}