6 lines
99 B
Dart
6 lines
99 B
Dart
class GroupRole {
|
|
static const member = 0;
|
|
static const owner = 1;
|
|
static const admin = 2;
|
|
}
|