AcaMate_iOS/AcaMate/3. ViewModel/ChatViewModel.swift
Seonkyu.kim 891fa0f016 [🎨] 로고 및 이미지 변경
모던 디자인 로고로 변경 및 웹 로고와 같은 아이콘으로 변경
2025-05-16 10:09:41 +09:00

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
}
}