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

namespace Gestor.Model.Common
{
	[TypeConverter(typeof(EnumDescriptionTypeConverter))]
	public enum NegocioCorretora
	{
		[Description("NOVO NEGÓCIO")]
		[OldValue("0")]
		Novo,
		[Description("NEGÓCIO PRÓPRIO")]
		[OldValue("1")]
		Proprio
	}
}