mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
22 lines
320 B
Swift
22 lines
320 B
Swift
//
|
|
// ParserData.swift
|
|
// RSParser
|
|
//
|
|
// Created by Brent Simmons on 6/20/17.
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public final class ParserData {
|
|
|
|
let url: String
|
|
let data: Data
|
|
|
|
public init(url: String, data: Data) {
|
|
|
|
self.url = url
|
|
self.data = data
|
|
}
|
|
}
|