IceCubesApp/Packages/Env/Sources/Env/UserPreferences.swift

9 lines
194 B
Swift
Raw Normal View History

import SwiftUI
import Foundation
public class UserPreferences: ObservableObject {
@AppStorage("remote_local_timeline") public var remoteLocalTimelines: [String] = []
public init() { }
}