forked from shadowfacts/Tusker
17 lines
316 B
Swift
17 lines
316 B
Swift
//
|
|
// CommonKeys.swift
|
|
// TuskerPreferences
|
|
//
|
|
// Created by Shadowfacts on 4/13/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct TrueKey: MigratablePreferenceKey {
|
|
public static var defaultValue: Bool { true }
|
|
}
|
|
|
|
public struct FalseKey: MigratablePreferenceKey {
|
|
public static var defaultValue: Bool { false }
|
|
}
|