mirror of
https://github.com/haorendashu/nowser.git
synced 2025-12-17 09:54:19 +01:00
8 lines
110 B
Dart
8 lines
110 B
Dart
class AuthResult {
|
|
static const int OK = 1;
|
|
|
|
static const int REJECT = -1;
|
|
|
|
static const int ASK = 0;
|
|
}
|