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

import Foundation

public struct TableSection: Codable, Equatable {
    public var features: [TableFeature]
    public var icon: String?
    public var name: String

    public init(features: [TableFeature], icon: String? = nil, name: String) {
        self.features = features
        self.icon = icon
        self.name = name
    }
}
