18 lines
		
	
	
		
			303 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			303 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
//
 | 
						|
//  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
 | 
						|
}
 |