inviterejectnotificationhandler.dart 419 B

12345678910111213
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. ///受邀者拒绝进入房间
  3. class InviteRejectNotificationHandler
  4. extends NotificationHandler<InviteeRejectApplyConsultationNotification> {
  5. InviteRejectNotificationHandler()
  6. : super(NotificationTypeEnum.InviteeRejectApplyConsultationNotification);
  7. @override
  8. void execute(InviteeRejectApplyConsultationNotification message) {
  9. super.execute(message);
  10. }
  11. }