closeconsultationduetochangenotificationhandler.dart 436 B

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