2020-05-08 17:49:14 +10:00
|
|
|
//
|
|
|
|
// PushNotificationConstants.swift
|
|
|
|
// CovidSafe
|
|
|
|
//
|
|
|
|
// Copyright © 2020 Australian Government. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
struct PushNotificationConstants {
|
|
|
|
// Bluetooth Status
|
|
|
|
static let btStatusPushNotifContents = [
|
|
|
|
[
|
2020-06-18 17:48:18 +10:00
|
|
|
"contentTitle": "PN_BluetoothStatusTitle".localizedString(),
|
|
|
|
"contentBody": "PN_BluetoothStatusBody".localizedString()
|
2020-05-08 17:49:14 +10:00
|
|
|
]
|
|
|
|
]
|
2020-05-18 12:43:53 +10:00
|
|
|
|
|
|
|
static let reminderPushNotifContents = [
|
2020-06-18 17:48:18 +10:00
|
|
|
"contentTitle": "PN_ReminderTitle".localizedString(),
|
|
|
|
"contentBody": "PN_ReminderBody".localizedString()
|
2020-05-18 12:43:53 +10:00
|
|
|
]
|
2020-05-08 17:49:14 +10:00
|
|
|
}
|