mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-27 01:52:30 +01:00
16 lines
250 B
Swift
16 lines
250 B
Swift
//
|
|
// ParsedHub.swift
|
|
// RSParser
|
|
//
|
|
// Created by Brent Simmons on 6/20/17.
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct ParsedHub {
|
|
|
|
public let type: String?
|
|
public let url: String?
|
|
}
|