blob: 03a28fe1fb857716d2ebcb9080459942f46b4f57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using Gestor.Model.Converter;
using System;
using System.ComponentModel;
namespace Gestor.Model.Common
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum FiltroLancamento
{
[Description("VENCIMENTO")]
Vencimento,
[Description("BAIXA")]
Baixa,
[Description("PAGAMENTO")]
Pagamento,
[Description("FORNECEDOR")]
Fornecedor,
[Description("LANÇAMENTO")]
Lancamento,
[Description("PERSONALIZADO")]
Personalizado
}
}
|