20 lines
280 B
Swift
Raw Normal View History

2024-08-18 21:08:01 -07:00
//
// OPMLDocument.swift
//
//
// Created by Brent Simmons on 8/18/24.
//
import Foundation
public final class OPMLDocument: OPMLItem {
2024-08-18 21:08:01 -07:00
public var title: String? = nil
public var url: String? = nil
init(url: String?) {
self.url = url
super.init(attributes: nil)
}
2024-08-18 21:08:01 -07:00
}