yattee/Model/Chapter.swift

9 lines
147 B
Swift
Raw Normal View History

import Foundation
struct Chapter: Identifiable, Equatable {
var id = UUID()
var title: String
var image: URL?
var start: Double
}