// // LNHttpResponse.swift // Lanu // // Created by OneeChan on 2025/11/6. // import Foundation import AutoCodable @AutoCodable struct LNHttpResponse<T: Decodable>: Decodable { var code: Int = 0 var msg: String = "" var data: T? = nil }