Mist/Mist/Extensions/UNNotificationAction+Extension.swift
2024-10-05 14:05:24 +10:00

16 lines
303 B
Swift

//
// UNNotificationAction+Extension.swift
// Mist
//
// Created by Nindi Gill on 23/6/2022.
//
import UserNotifications
extension UNNotificationAction {
/// Mist Notification Action identifiers
enum Identifier {
/// Show Identifier
static let show: String = "Show"
}
}