mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-12 12:33:42 +03:00
28 lines
782 B
Swift
28 lines
782 B
Swift
// Copyright © 2021 Encrypted Ink. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
struct Defaults {
|
|
|
|
private static let userDefaults = UserDefaults.standard
|
|
|
|
static var storedSessions: [String: SessionStorage.Item] {
|
|
get {
|
|
return userDefaults.codableValue(type: [String: SessionStorage.Item].self, forKey: "storedSessions") ?? [:]
|
|
}
|
|
set {
|
|
userDefaults.setCodable(newValue, forKey: "storedSessions")
|
|
}
|
|
}
|
|
|
|
static var latestInteractionDates: [String: Date] {
|
|
get {
|
|
return userDefaults.codableValue(type: [String: Date].self, forKey: "latestInteractionDates") ?? [:]
|
|
}
|
|
set {
|
|
userDefaults.setCodable(newValue, forKey: "latestInteractionDates")
|
|
}
|
|
}
|
|
|
|
}
|