18 lines
743 B
Dart
18 lines
743 B
Dart
class Events {
|
|
static String sessionTerminated = "session:terminated";
|
|
static String roomUpdated = "room:updated";
|
|
static String roomUnblocked = "room:unblocked";
|
|
static String roomUnblock = "room:unblock";
|
|
static String roomBlock = "room:block";
|
|
static String roomBlocked = "room:blocked";
|
|
static String roomBlocking = "room:blocking";
|
|
static String roomGet = "room:get";
|
|
static String roomCreate = "room:create";
|
|
static String supportRoomStatus = "room:status-support";
|
|
static String supportRoomCreate = "room:create-support";
|
|
static String messageIncome = 'message:income';
|
|
static String messageCreate = "message:create";
|
|
static String messageGet = "message:get";
|
|
static String messageRead = "message:read";
|
|
}
|