LNIMResponse.swift 320 B

123456789101112131415161718192021
  1. //
  2. // LNIMResponse.swift
  3. // Gami
  4. //
  5. // Created by OneeChan on 2026/2/8.
  6. //
  7. import Foundation
  8. import AutoCodable
  9. @AutoCodable
  10. class LNIMUserRemarkVO: Decodable {
  11. var userNo: String = ""
  12. var note: String = ""
  13. }
  14. @AutoCodable
  15. class LNIMUsersRemarkResponse: Decodable {
  16. var list: [LNIMUserRemarkVO] = []
  17. }