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