blob: d0ec8be2db040b0989e6ab9ba516cd2e90ecb7d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Converter;
namespace Gestor.Model.Common;
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum BaseRepasse
{
[OldValue("1")]
[Description("VIGÊNCIA DO DOCUMENTO")]
Vigencia = 1,
[OldValue("2")]
[Description("CADASTRO DO DOCUMENTO")]
Cadastro,
[OldValue("3")]
[Description("VENCIMENTO DA PARCELA")]
Vencimento,
[OldValue("4")]
[Description("EMISSÃO DA APÓLICE")]
Emissao,
[OldValue("5")]
[Description("TRANSMISSÃO DA PROPOSTA")]
Transmissao
}
|