summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Common/StatusSinistro.cs
blob: 96df478fe5455b35804df689440fda10e5ef0fe2 (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 Gestor.Model.Attributes;
using Gestor.Model.Converter;
using System;
using System.ComponentModel;

namespace Gestor.Model.Common
{
	[TypeConverter(typeof(EnumDescriptionTypeConverter))]
	public enum StatusSinistro
	{
		[Description("EM ANDAMENTO")]
		[OldValue("1")]
		EmAndamento = 1,
		[Description("LIQUIDADO")]
		[OldValue("2")]
		Liquidado = 2,
		[Description("LIQUIDADO SEM INDENIZAÇÃO")]
		[OldValue("3")]
		SemIndenizacao = 3,
		[Description("NEGADO")]
		[OldValue("4")]
		Negado = 4,
		[Description("ATENDIDO COMO TERCEIRO")]
		[OldValue("5")]
		Terceiro = 5
	}
}