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

import Foundation

/// Icon-based feature value for API response
public struct IconFeatureValueResponse: Codable, Equatable {
    public var icon: String

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