This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.ComponentModel; | |
public enum ErrorCode | |
{ | |
[Description("Agência de crédito igual a zero. Informe o nº da Agência de Crédito.")] | |
AgenciaCreditoIgualZero = 1, | |
[Description("Conta de crédito não é numérica. Informe apenas números.")] | |
ContaCreditoNaoNumerica = 2, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.ComponentModel; | |
public enum ErrorCode | |
{ | |
[Description("Agência de crédito igual a zero. Informe o nº da Agência de Crédito.")] | |
AgenciaCreditoIgualZero = 1, | |
[Description("Conta de crédito não é numérica. Informe apenas números.")] | |
ContaCreditoNaoNumerica = 2, |