advplyr.audiobookshelf-app/ios/App/Shared/util/PlayerEvents.swift
2022-08-19 16:36:56 -04:00

17 lines
503 B
Swift

//
// PlayerEvents.swift
// App
//
// Created by Rasmus Krämer on 14.04.22.
//
import Foundation
enum PlayerEvents: String {
case update = "com.audiobookshelf.app.player.update"
case closed = "com.audiobookshelf.app.player.closed"
case sleepSet = "com.audiobookshelf.app.player.sleep.set"
case sleepEnded = "com.audiobookshelf.app.player.sleep.ended"
case failed = "com.audiobookshelf.app.player.failed"
case localProgress = "com.audiobookshelf.app.player.localProgress"
}