blob: e15ec4b01e1ef7b8bb833bbe0c4e4fda72f0dcfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// NotificationProviderIdentifier.swift
// MullvadVPN
//
// Created by Mojgan on 2023-05-10.
// Copyright © 2023 Mullvad VPN AB. All rights reserved.
//
import Foundation
enum NotificationProviderIdentifier: String {
case accountExpirySystemNotification = "AccountExpiryNotification"
case accountExpiryInAppNotification = "AccountExpiryInAppNotification"
case registeredDeviceInAppNotification = "RegisteredDeviceInAppNotification"
case tunnelStatusNotificationProvider = "TunnelStatusNotificationProvider"
case `default` = "default"
var domainIdentifier: String {
"net.mullvad.MullvadVPN.\(rawValue)"
}
}
|