NetNewsWire/Frameworks/RSParser/ParserData.swift

23 lines
377 B
Swift
Raw Normal View History

//
// ParserData.swift
// RSParser
//
// Created by Brent Simmons on 6/20/17.
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
//
import Foundation
2017-06-26 01:32:07 +02:00
@objc public final class ParserData: NSObject {
@objc public let url: String
@objc public let data: Data
public init(url: String, data: Data) {
self.url = url
self.data = data
2017-06-26 01:32:07 +02:00
super.init()
}
}