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

import Foundation

public struct PromptsAndTagsResponse: Codable, Equatable {
    public var prompts: [String]
    public var tags: [String]

    public init(prompts: [String], tags: [String]) {
        self.prompts = prompts
        self.tags = tags
    }
}
