18 lines
328 B
C#
18 lines
328 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AYA.SlnSinortModel.Constantes
|
|
{
|
|
class Constantes
|
|
{
|
|
}
|
|
public enum TipoCodigoRespuesta
|
|
{
|
|
EXITOSO = 0,
|
|
ERROR = 1,
|
|
ADVERTENCIA = 2,
|
|
}
|
|
}
|