mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +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
|
||
|
}
|