LNHttpResponse.swift 254 B

12345678910111213141516
  1. //
  2. // LNHttpResponse.swift
  3. // Lanu
  4. //
  5. // Created by OneeChan on 2025/11/6.
  6. //
  7. import Foundation
  8. import AutoCodable
  9. @AutoCodable
  10. struct LNHttpResponse<T: Decodable>: Decodable {
  11. var code: Int = 0
  12. var msg: String = ""
  13. var data: T? = nil
  14. }