2
2
mirror of https://github.com/mastodon/mastodon-ios synced 2025-04-11 22:58:02 +02:00
mastodon-ios/Mastodon/Preference/WizardPreference.swift

16 lines
296 B
Swift

//
// WizardPreference.swift
// Mastodon
//
// Created by Cirno MainasuK on 2021-9-15.
//
import UIKit
extension UserDefaults {
@objc dynamic var didShowMultipleAccountSwitchWizard: Bool {
get { return bool(forKey: #function) }
set { self[#function] = newValue }
}
}