// // LNIMResponse.swift // Gami // // Created by OneeChan on 2026/2/8. // import Foundation import AutoCodable @AutoCodable class LNIMUserRemarkVO: Decodable { var userNo: String = "" var note: String = "" } @AutoCodable class LNIMUsersRemarkResponse: Decodable { var list: [LNIMUserRemarkVO] = [] }