blob: 26f1da2781a4fe390f9b2cc36e151ab039ffcc9a (
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 © 2022 Mullvad VPN AB. All rights reserved.
//
import Foundation
protocol NotificationManagerDelegate: AnyObject {
func notificationManagerDidUpdateInAppNotifications(
_ manager: NotificationManager,
notifications: [InAppNotificationDescriptor]
)
func notificationManager(_ manager: NotificationManager, didReceiveResponse: NotificationResponse)
}
|