blob: 1e2b8f8f27b69319b51f2ce1ba4ffd41ed2f0588 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// NotificationManagerDelegate.swift
// MullvadVPN
//
// Created by pronebird on 09/12/2022.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import Foundation
protocol NotificationManagerDelegate: AnyObject {
func notificationManagerDidUpdateInAppNotifications(
_ manager: NotificationManager,
notifications: [InAppNotificationDescriptor]
)
func notificationManager(_ manager: NotificationManager, didReceiveResponse: NotificationResponse)
}
|