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

import Foundation

public struct VideoStreamingResolutionSchema: Codable, Equatable {
    public var resolution: Int
    public var url: String

    public init(resolution: Int, url: String) {
        self.resolution = resolution
        self.url = url
    }
}
