join_handlers.dart 390 B

12345678910111213
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. ///进入会诊
  3. class JoinLiveConsultationNotificationHandler
  4. extends NotificationHandler<JoinLiveConsultationNotification> {
  5. JoinLiveConsultationNotificationHandler()
  6. : super(NotificationTypeEnum.JoinLiveConsultationNotification);
  7. @override
  8. void execute(JoinLiveConsultationNotification message) {
  9. super.execute(message);
  10. }
  11. }