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

import Foundation

public struct GetVideosResponse: Codable, Equatable {
    public var videoUrls: [String]

    public init(videoUrls: [String]) {
        self.videoUrls = videoUrls
    }
}
