mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-26 17:43:22 +01:00
16 lines
248 B
Swift
16 lines
248 B
Swift
|
//
|
||
|
// HTMLLink.swift
|
||
|
//
|
||
|
//
|
||
|
// Created by Brent Simmons on 9/21/24.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
public final class HTMLLink {
|
||
|
|
||
|
let urlString: String? // Absolute URL string
|
||
|
let text: String?
|
||
|
let title: String? // Title attribute inside anchor tag
|
||
|
}
|