blob: 30885636e1c39f9fb845ee05cca3e6cd9b929d20 (
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 StatusPagamento
{
[Description("SEM PENDÊNCIA")]
All,
[Description("PAGAMENTO PENDENTE")]
Pending,
[Description("PENDÊNCIA NOTIFICADA")]
Notified
}
|