- import 'package:fis_jsonrpc/rpc.dart';
- /// 受邀请者通知
- class InviteConsultationNotificationHandler
- extends NotificationHandler<InviteeConsultationNotification> {
- InviteConsultationNotificationHandler()
- : super(NotificationTypeEnum.InviteeConsultationNotification);
- @override
- void execute(InviteeConsultationNotification message) {
- super.execute(message);
- }
- }
|