forked from AcaMate/AcaMate_iOS
19 lines
302 B
Swift
19 lines
302 B
Swift
//
|
|
// ChatViewModel.swift
|
|
// AcaMate
|
|
//
|
|
// Created by TAnine on 2/17/25.
|
|
//
|
|
|
|
import SwiftUI
|
|
class ChatViewModel: ObservableObject {
|
|
private let appVM: AppViewModel
|
|
|
|
@Published var messages: [ChatMesage] = []
|
|
init(_ appVM: AppViewModel) {
|
|
self.appVM = appVM
|
|
}
|
|
|
|
|
|
}
|