1
0
mirror of https://github.com/yattee/yattee.git synced 2025-01-11 03:50:32 +05:30
yattee/Model/Chapter.swift
Arkadiusz Fal 3e15e586e3 Player controls UI changes
WIP on controls

Chapters

working

Add previews variable

Add lists ids

WIP
2022-06-26 18:14:37 +02:00

9 lines
147 B
Swift

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