blob: ffabaf1584598a0a4f23291644ff66554baa4468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using Gestor.Model.Converter;
using System;
using System.ComponentModel;
namespace Gestor.Model.Common
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum StatusTarefa
{
[Description("PENDENTE")]
Pendente,
[Description("REAGENDADO")]
Reagendado,
[Description("REALIZADO")]
Realizado
}
}
|