18 lines
277 B
Swift
18 lines
277 B
Swift
//
|
|
// MessageViewModel.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 2023/08/10.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
final class MessageViewModel: ObservableObject {
|
|
|
|
enum CurrentTab: String {
|
|
case text, voice
|
|
}
|
|
|
|
@Published var currentTab: CurrentTab = .text
|
|
}
|