1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2025-02-02 10:27:08 +01:00

27 lines
524 B
Swift
Raw Normal View History

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