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