Files
nowser/lib/const/auth_result.dart
2024-09-04 19:22:38 +08:00

8 lines
110 B
Dart

class AuthResult {
static const int OK = 1;
static const int REJECT = -1;
static const int ASK = 0;
}