2021-11-03 14:24:52 +08:00
|
|
|
//
|
|
|
|
// StoreReviewPreference.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by Cirno MainasuK on 2021-11-3.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
extension UserDefaults {
|
|
|
|
|
2022-09-30 19:28:09 +08:00
|
|
|
@objc public dynamic var processCompletedCount: Int {
|
2021-11-03 14:24:52 +08:00
|
|
|
get {
|
|
|
|
return integer(forKey: #function)
|
|
|
|
}
|
|
|
|
set { self[#function] = newValue }
|
|
|
|
}
|
|
|
|
|
2022-09-30 19:28:09 +08:00
|
|
|
@objc public dynamic var lastVersionPromptedForReview: String? {
|
2021-11-03 14:24:52 +08:00
|
|
|
get {
|
|
|
|
return string(forKey: #function)
|
|
|
|
}
|
|
|
|
set { self[#function] = newValue }
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|