mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-11 08:06:23 +01:00
16 lines
303 B
Swift
16 lines
303 B
Swift
//
|
|
// WizardPreference.swift
|
|
// Mastodon
|
|
//
|
|
// Created by Cirno MainasuK on 2021-9-15.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension UserDefaults {
|
|
@objc public dynamic var didShowMultipleAccountSwitchWizard: Bool {
|
|
get { return bool(forKey: #function) }
|
|
set { self[#function] = newValue }
|
|
}
|
|
}
|