12 lines
305 B
Swift
12 lines
305 B
Swift
import Foundation
|
|
|
|
public struct BindingResponse: Codable, Sendable, Equatable {
|
|
public let type: Int
|
|
/// 设备 SN 码 (14 位)
|
|
public let sn: String
|
|
/// 1 = 成功, 0 = 失败
|
|
public let success: Int
|
|
/// 设备内已存在的文件 key 列表
|
|
public let contents: [String]
|
|
}
|