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

import Foundation

public struct RadioStationResponse: Codable, Equatable {
    public var pageSize: Int?
    public var startIndex: Int?
    public var stations: [RadioStation]?
    public var totalCount: Int?

    public init(pageSize: Int? = nil, startIndex: Int? = nil, stations: [RadioStation]? = nil, totalCount: Int? = nil) {
        self.pageSize = pageSize
        self.startIndex = startIndex
        self.stations = stations
        self.totalCount = totalCount
    }
}
