2022-04-14 14:39:09 +02:00
|
|
|
//
|
|
|
|
// 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"
|
2022-05-03 14:32:46 +02:00
|
|
|
case sleepSet = "com.audiobookshelf.app.player.sleep.set"
|
|
|
|
case sleepEnded = "com.audiobookshelf.app.player.sleep.ended"
|
2022-05-06 18:17:45 -05:00
|
|
|
case failed = "com.audiobookshelf.app.player.failed"
|
2022-08-13 10:28:28 -04:00
|
|
|
case localProgress = "com.audiobookshelf.app.player.localProgress"
|
2022-04-14 14:39:09 +02:00
|
|
|
}
|