NetNewsWire/Modules/Parser/Sources/OPMLParser/OPMLDocument.swift
2024-08-26 22:39:46 -07:00

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)
}
}