rejectinviteliveconsultationhandler.dart 418 B

12345678910111213
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. ///拒绝会诊邀请通知
  3. class RejectInviteLiveConsultationHandler
  4. extends NotificationHandler<RejectInviteLiveConsultationNotification> {
  5. RejectInviteLiveConsultationHandler()
  6. : super(NotificationTypeEnum.RejectInviteLiveConsultationNotification);
  7. @override
  8. void execute(RejectInviteLiveConsultationNotification message) {
  9. super.execute(message);
  10. }
  11. }