blob: e96018ba93a6edf877fc11a63dad59b41f0b41a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System.ComponentModel;
using Gestor.Model.Converter;
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
}
|