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

import Foundation

public struct TestPromptsRequest: Codable, Equatable {
    public var locale: String
    public var tags: [String]

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