inviteinliveconsultationhandler.dart 410 B

12345678910111213
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. ///会诊过程中邀请成员的通知
  3. class InviteInLiveConsultationHandler
  4. extends NotificationHandler<InviteInLiveConsultationNotification> {
  5. InviteInLiveConsultationHandler()
  6. : super(NotificationTypeEnum.InviteInLiveConsultationNotification);
  7. @override
  8. void execute(InviteInLiveConsultationNotification message) {
  9. super.execute(message);
  10. }
  11. }