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

import Foundation

public struct HistoryResponse: Codable, Equatable {
    public var history: [HistoryBatchEntity]

    public init(history: [HistoryBatchEntity]) {
        self.history = history
    }
}
