17 lines
344 B
C#
17 lines
344 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AYA.SlnSynorModel.Constantes
|
|
{
|
|
class Constantes
|
|
{
|
|
}
|
|
public class EnumRespuesta
|
|
{
|
|
public static string EXITOSO = "1";
|
|
public static string FALLIDO = "0";
|
|
}
|
|
}
|