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.
 

13 lines
345 B

namespace BWP.ABCClient.B2B
{
public static class TrxStatus
{
public const string CANCEL = "5";
public const string CHECK = "1";
public const string FAILURE = "3";
public const string NO_RESPONSE = "9";
public const string ORIGINAL = "0";
public const string REJECT = "4";
public const string SUCCESS = "2";
}
}