mirror of
https://github.com/yattee/yattee.git
synced 2026-01-07 20:32:32 +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
|
|
}
|