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