|
//
|
|
// ContentBoxViewModel.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 12/7/24.
|
|
//
|
|
|
|
import Foundation
|
|
import Combine
|
|
|
|
final class ContentBoxViewModel: ObservableObject {
|
|
enum CurrentTab: String {
|
|
case playlist, orderlist
|
|
}
|
|
|
|
@Published var currentTab: CurrentTab = .orderlist
|
|
}
|