You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1013 B
52 lines
1013 B
3 years ago
|
import 'package:bytedesk_kefu/model/message.dart';
|
||
|
import 'package:event_bus/event_bus.dart';
|
||
|
|
||
|
EventBus bytedeskEventBus = new EventBus();
|
||
|
|
||
|
class ReceiveMessageEventBus {
|
||
|
Message message;
|
||
|
ReceiveMessageEventBus(this.message);
|
||
|
}
|
||
|
|
||
|
class ReceiveMessageReceiptEventBus {
|
||
|
String mid;
|
||
|
String status;
|
||
|
ReceiveMessageReceiptEventBus(this.mid, this.status);
|
||
|
}
|
||
|
|
||
|
class ReceiveMessagePreviewEventBus {
|
||
|
String content;
|
||
|
ReceiveMessagePreviewEventBus(this.content);
|
||
|
}
|
||
|
|
||
|
class ReceiveMessageRecallEventBus {
|
||
|
String mid;
|
||
|
ReceiveMessageRecallEventBus(this.mid);
|
||
|
}
|
||
|
|
||
|
class ConnectionEventBus {
|
||
|
String content;
|
||
|
ConnectionEventBus(this.content);
|
||
|
}
|
||
|
|
||
|
class DeleteMessageEventBus {
|
||
|
String mid;
|
||
|
DeleteMessageEventBus(this.mid);
|
||
|
}
|
||
|
|
||
|
// token过期
|
||
|
class InvalidTokenEventBus {
|
||
|
InvalidTokenEventBus();
|
||
|
}
|
||
|
|
||
|
class QueryAnswerEventBus {
|
||
|
String aid;
|
||
|
String question;
|
||
|
String answer;
|
||
|
QueryAnswerEventBus(this.aid, this.question, this.answer);
|
||
|
}
|
||
|
|
||
|
class RequestAgentThreadEventBus {
|
||
|
RequestAgentThreadEventBus();
|
||
|
}
|