mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
11 lines
338 B
Swift
11 lines
338 B
Swift
import Foundation
|
|
import TelegramCore
|
|
|
|
private enum ApplicationSpecificPreferencesKeyValues: Int32 {
|
|
case inAppNotificationSettings
|
|
}
|
|
|
|
struct ApplicationSpecificPreferencesKeys {
|
|
static let inAppNotificationSettings = applicationSpecificPreferencesKey(ApplicationSpecificPreferencesKeyValues.inAppNotificationSettings.rawValue)
|
|
}
|