Allow listing of notification_id in persistent_notification trigger

please consider adding the option for:

      - platform: persistent_notification
        update_type: removed
        notification_id:
          - afval_vandaag_notificatie
          - afval_morgen_notificatie

where we have to do this now

      - platform: persistent_notification
        update_type: removed
        notification_id: afval_vandaag_notificatie
      - platform: persistent_notification
        update_type: removed
        notification_id: afval_morgen_notificatie

if feasible, it would be very much appreciated if we could also template that option to something like:

      - platform: persistent_notification
        update_type: removed
        notification_id: >
          afval_{{is_state('input_boolean.afval_vandaag_notificatie','on')
              |iif('vandaag','morgen')}}_notificatie

which we can use in the creation/dismissal of the notifications:

      - service: persistent_notification.dismiss
        data:
          notification_id: >
            afval_{{is_state('input_boolean.afval_vandaag_notificatie','on')
              |iif('vandaag','morgen')}}_notificatie

thanks for considering finetuning the move of persistent notifications a bit further.