Skip to content

Commit

Permalink
[feat] #241: 채팅방 응답 모델 임시 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-muuu committed Jun 22, 2023
1 parent fa50095 commit 22c9187
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Zatch/Data/Models/Chat/ChattingRoomResponseModel.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//
// ChattingRoomResponseModel.swift
// Zatch
//
// Created by 박소윤 on 2023/06/22.
//

import Foundation

struct ChattingRoomResponseModel: Decodable{

let name: String
let roomId: String
let sessions: Session

struct Session: Decodable{

}
}

0 comments on commit 22c9187

Please sign in to comment.