accept_meeting_handle.dart 377 B

12345678910111213
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. /// 发起者收到对方接受通知
  3. class AcceptMeetingNotificationHandler
  4. extends NotificationHandler<AcceptMeetingNotification> {
  5. AcceptMeetingNotificationHandler()
  6. : super(NotificationTypeEnum.AcceptMeetingNotification);
  7. @override
  8. void execute(AcceptMeetingNotification message) {
  9. super.execute(message);
  10. }
  11. }