mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 06:14:59 +00:00
21 lines
578 B
Swift
21 lines
578 B
Swift
//
|
|
// PushNotificationConstants.swift
|
|
// CovidSafe
|
|
//
|
|
// Copyright © 2020 Australian Government. All rights reserved.
|
|
//
|
|
|
|
struct PushNotificationConstants {
|
|
// Bluetooth Status
|
|
static let btStatusPushNotifContents = [
|
|
[
|
|
"contentTitle": "PN_BluetoothStatusTitle".localizedString(),
|
|
"contentBody": "PN_BluetoothStatusBody".localizedString()
|
|
]
|
|
]
|
|
|
|
static let reminderPushNotifContents = [
|
|
"contentTitle": "PN_ReminderTitle".localizedString(),
|
|
"contentBody": "PN_ReminderBody".localizedString()
|
|
]
|
|
}
|