ErrorCode.cs 192 B

123456789
  1. namespace Model
  2. {
  3. public static class ErrorCode
  4. {
  5. public const int ERR_Success = 0;
  6. public const int ERR_AccountOrPasswordError = 1;
  7. public const int ERR_ConnectGateKeyError = 2;
  8. }
  9. }