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

import Foundation

public struct RadioSchema: Codable, Equatable {
    public var clips: [GeneratedClipSchema]
    public var tag: String

    public init(clips: [GeneratedClipSchema], tag: String) {
        self.clips = clips
        self.tag = tag
    }
}
