VisitedPage

data class VisitedPage(val url: Uri, val title: String, val visits: List<LocalDateTime>) : HistoryEntry

Data class representing a visited page history entry.

Constructors

Link copied to clipboard
constructor(url: Uri, title: String, visits: List<LocalDateTime>)

Properties

Link copied to clipboard
open override val title: String

The title of the visited page.

Link copied to clipboard
open override val url: Uri

The URL of the visited page.

Link copied to clipboard
open override val visits: List<LocalDateTime>

List of LocalDateTime objects representing the visit times.