mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
14 lines
426 B
Swift
14 lines
426 B
Swift
import Foundation
|
|
|
|
public struct NotificationsPresentationData: Codable, Equatable {
|
|
public var applicationLockedMessageString: String
|
|
|
|
public init(applicationLockedMessageString: String) {
|
|
self.applicationLockedMessageString = applicationLockedMessageString
|
|
}
|
|
}
|
|
|
|
public func notificationsPresentationDataPath(rootPath: String) -> String {
|
|
return rootPath + "/notificationsPresentationData.json"
|
|
}
|