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

import Foundation

/// Localized text for API response (no key field)
public struct LocalizedTextResponse: Codable, Equatable {
    public var text: String

    public init(text: String) {
        self.text = text
    }
}
