mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-14 18:05:50 +01:00
20 lines
321 B
Swift
20 lines
321 B
Swift
//
|
|
// Preference+Discovery.swift
|
|
//
|
|
//
|
|
// Created by MainasuK on 2022-4-19.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension UserDefaults {
|
|
|
|
@objc public dynamic var discoveryIntroBannerNeedsHidden: Bool {
|
|
get {
|
|
return bool(forKey: #function)
|
|
}
|
|
set { self[#function] = newValue }
|
|
}
|
|
|
|
}
|