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

namespace Gestor.Model.Common
{
	[TypeConverter(typeof(EnumDescriptionTypeConverter))]
	public enum StatusPagamento
	{
		[Description("SEM PENDÊNCIA")]
		All,
		[Description("PAGAMENTO PENDENTE")]
		Pending,
		[Description("PENDÊNCIA NOTIFICADA")]
		Notified
	}
}