blob: 4747a6c34c5ac249fcc78e0d30685068c2846f8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// InAppNotificationProvider.swift
// MullvadVPN
//
// Created by pronebird on 09/12/2022.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import Foundation
/// Protocol describing in-app notification provider.
protocol InAppNotificationProvider: NotificationProviderProtocol {
/// In-app notification descriptor.
var notificationDescriptor: InAppNotificationDescriptor? { get }
}
|