Epub阅读器0.0.1
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import Foundation
|
||||
|
||||
public struct RDEPUBReaderTableOfContentsItem: Equatable {
|
||||
public var title: String
|
||||
public var href: String
|
||||
public var depth: Int
|
||||
public var pageNumber: Int?
|
||||
|
||||
public init(title: String, href: String, depth: Int, pageNumber: Int? = nil) {
|
||||
self.title = title
|
||||
self.href = href
|
||||
self.depth = depth
|
||||
self.pageNumber = pageNumber
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user