8 lines
191 B
Swift
8 lines
191 B
Swift
import Foundation
|
|
|
|
public struct DeleteFileResponse: Codable, Sendable, Equatable {
|
|
public let type: Int
|
|
/// 0 = 成功, 1 = 失败, 2 = 文件不存在
|
|
public let success: Int
|
|
}
|