// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct TrashSpec: Codable, Equatable {
    public var clipIds: [String]
    public var trash: Bool

    public init(clipIds: [String], trash: Bool) {
        self.clipIds = clipIds
        self.trash = trash
    }
}
