blob: 02b26c12ade4c008c88dc4cf7c54af5d2b0df5dc (
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 TipoIncidenciaDesconto
{
[Description("AMBOS")]
Ambos,
[Description("SOMENTE POSITIVOS")]
Positivos
}
|