From 61e797404964c5d9c00392c531eeedd4fbc4e2f3 Mon Sep 17 00:00:00 2001 From: SSOOYA Date: Wed, 24 May 2023 21:08:13 +0900 Subject: [PATCH] =?UTF-8?q?[refactor]=20#245:=20=EC=B1=84=ED=8C=85?= =?UTF-8?q?=EB=B0=A9=20ViewModel=20Input=20=EC=A3=BC=EC=84=9D=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0=20=EB=B0=8F=20Output=20=EB=A9=94=EC=8B=9C=EC=A7=80=20?= =?UTF-8?q?=EC=A0=84=EC=86=A1=20=EA=B0=80=EB=8A=A5=EC=97=AC=EB=B6=80=20?= =?UTF-8?q?=ED=94=84=EB=A1=9C=ED=8D=BC=ED=8B=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ViewModels/Chat/ChattingRoomViewModel.swift | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Zatch/Presentation/ViewModels/Chat/ChattingRoomViewModel.swift b/Zatch/Presentation/ViewModels/Chat/ChattingRoomViewModel.swift index 8c2469b..2c2f1dc 100644 --- a/Zatch/Presentation/ViewModels/Chat/ChattingRoomViewModel.swift +++ b/Zatch/Presentation/ViewModels/Chat/ChattingRoomViewModel.swift @@ -41,12 +41,13 @@ class ChattingRoomViewModel: ChattingRoomViewModelInterface{ } struct Input{ -// let messageObservable: Observable -// let sendBtnTap: ControlEvent -// let exitBtnTap: ControlEvent + let messageObservable: Observable + let sendBtnTap: ControlEvent + let exitBtnTap: Observable } struct Output{ +// let canSendMessage: Driver // let exitResponse: Observable }