mirror of
https://github.com/ninxsoft/Mist.git
synced 2025-05-15 07:34:47 -04:00
16 lines
261 B
Swift
16 lines
261 B
Swift
//
|
|
// UNNotificationAction+Extension.swift
|
|
// Mist
|
|
//
|
|
// Created by Nindi Gill on 23/6/2022.
|
|
//
|
|
|
|
import UserNotifications
|
|
|
|
extension UNNotificationAction {
|
|
|
|
struct Identifier {
|
|
/// Show Identifier
|
|
static let show: String = "Show"
|
|
}
|
|
}
|