mobile-ios/CovidSafe/PushNotificationConstants.swift

22 lines
578 B
Swift
Raw Permalink Normal View History

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