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

import Foundation

public struct HomepageResponse: Codable, Equatable {
    public var sections: [HomepageSection]

    public init(sections: [HomepageSection]) {
        self.sections = sections
    }
}
