33 lines
565 B
Swift
Executable File
33 lines
565 B
Swift
Executable File
//
|
|
// DownloadObject.swift
|
|
// RSWeb
|
|
//
|
|
// Created by Brent Simmons on 8/3/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public final class DownloadObject: Hashable {
|
|
|
|
public let url: URL
|
|
public var data = Data()
|
|
|
|
public init(url: URL) {
|
|
self.url = url
|
|
}
|
|
|
|
// MARK: - Hashable
|
|
|
|
public func hash(into hasher: inout Hasher) {
|
|
hasher.combine(url)
|
|
}
|
|
|
|
// MARK: - Equatable
|
|
|
|
public static func ==(lhs: DownloadObject, rhs: DownloadObject) -> Bool {
|
|
return lhs.url == rhs.url && lhs.data == rhs.data
|
|
}
|
|
}
|
|
|