summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Common/StatusLancamento.cs
blob: 4ce55eea156baafe98966c15c3943a66be6f17ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System.ComponentModel;
using Gestor.Model.Converter;

namespace Gestor.Model.Common;

[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum StatusLancamento
{
	[Description("PENDENTES")]
	Pendentes,
	[Description("BAIXADOS")]
	Baixados,
	[Description("TODOS")]
	Todos
}