You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 lines
809 B

namespace CustomerOnlineRemit.Common.Model
{
public class ResponseHelper
{
public const int SUCCESS = 0;
public const int FAILED = 1;
public const int EXCEPTION = 999;
public const int SUSPICIOUS = 2;
}
public class ResponseMessageHelper
{
public const string SUCCESS = "Success!";
public const string FAILED = "Failed!";
public const string EXCEPTION = "Exception occured in the system, please contact HO!";
public const string SUSPICIOUS = "Transaction is in suspicious, please contact HO!";
}
public enum ToastType
{
Info = 3,
Success = 0,
Warning = 2,
Error = 1
}
public enum ToastLevel
{
Info,
Success,
Warning,
Error
}
}