mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-27 10:02:37 +01:00
20 lines
261 B
Swift
20 lines
261 B
Swift
//
|
|
// ParserData.swift
|
|
//
|
|
//
|
|
// Created by Brent Simmons on 8/18/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct ParserData: Sendable {
|
|
|
|
public let url: String
|
|
public let data: Data
|
|
|
|
public init(url: String, data: Data) {
|
|
self.url = url
|
|
self.data = data
|
|
}
|
|
}
|