mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-26 01:22:53 +01:00
20 lines
280 B
Swift
20 lines
280 B
Swift
//
|
|
// OPMLDocument.swift
|
|
//
|
|
//
|
|
// Created by Brent Simmons on 8/18/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public final class OPMLDocument: OPMLItem {
|
|
|
|
public var title: String? = nil
|
|
public var url: String? = nil
|
|
|
|
init(url: String?) {
|
|
self.url = url
|
|
super.init(attributes: nil)
|
|
}
|
|
}
|