blob: 722be67e97d4f159d0fc33a07fb330683afc636f (
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.Converter;
using System;
using System.ComponentModel;
namespace Gestor.Model.Common
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum TipoPerda
{
[Description("CONSTATAÇÃO")]
Constatacao = 1,
[Description("PARCIAL")]
Parcial = 2,
[Description("TOTAL")]
Total = 3,
[Description("ROUBO/FURTO")]
RouboFurto = 4,
[Description("MORTE")]
Morte = 5,
[Description("INVALIDEZ")]
Invalidez = 6,
[Description("PERDA DE RENDA")]
PerdaRenda = 7,
[Description("OUTROS")]
Outros = 8
}
}
|