1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-12 21:30:32 +05:30
yattee/Model/SeekType.swift

15 lines
260 B
Swift
Raw Permalink Normal View History

2022-08-29 17:25:23 +05:30
import Foundation
enum SeekType: Equatable {
case chapterSkip(String)
2022-08-29 17:25:23 +05:30
case segmentSkip(String)
case segmentRestore
case userInteracted
case loopRestart
case backendSync
var presentable: Bool {
self != .backendSync
}
}