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