mirror of
https://github.com/yattee/yattee.git
synced 2025-04-25 08:06:31 +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
|
|
}
|