mirror of
https://github.com/yattee/yattee.git
synced 2025-03-13 03:59:42 +00:00
9 lines
147 B
Swift
9 lines
147 B
Swift
import Foundation
|
|
|
|
struct Chapter: Identifiable, Equatable {
|
|
var id = UUID()
|
|
var title: String
|
|
var image: URL?
|
|
var start: Double
|
|
}
|