ChWebsiteApp/CHDataManagement/Model/Settings/NavigationBarSettings.swift
2024-12-04 22:54:05 +01:00

18 lines
362 B
Swift

import Foundation
final class NavigationBarSettings: ObservableObject {
/// The path to the main icon in the navigation bar
@Published
var iconPath: String
/// The tags to show in the navigation bar
@Published
var tags: [Tag]
init(iconPath: String, tags: [Tag]) {
self.iconPath = iconPath
self.tags = tags
}
}