blob: 2cc22bc2150969d6697f2b1051470210bed3b8da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using Gestor.Model.Converter;
using System;
using System.ComponentModel;
namespace Gestor.Model.License
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum StatusLicenca
{
[Description("NORMAL")]
Normal,
[Description("BLOQUEADO")]
Bloqueado,
[Description("CONSULTA")]
Consulta,
[Description("CANCELADO")]
Cancelado
}
}
|