inviteliveconsultationnotificationhandler.dart 400 B

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