blob: 43234fe381b7a09bb35f458b4f31948a1231abf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using Gestor.Model.Converter;
using System;
using System.ComponentModel;
namespace Gestor.Model.Common
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum FiltroCritica
{
[Description("CLIENTE")]
Cliente,
[Description("USUÁRIO")]
Usuario
}
}
|