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

import Foundation

public struct FeatureDescription: Codable, Equatable {
    public var text: String
    public var type: String

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