mirror of
https://github.com/haorendashu/nowser.git
synced 2025-12-17 09:54:19 +01:00
15 lines
184 B
Dart
15 lines
184 B
Dart
class OpenStatus {
|
|
static const OPEN = 1;
|
|
static const CLOSE = -1;
|
|
}
|
|
|
|
class EnumObj {
|
|
final dynamic value;
|
|
final String name;
|
|
|
|
EnumObj(
|
|
this.value,
|
|
this.name,
|
|
);
|
|
}
|