mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-08-04 01:54:33 +02:00
13 lines
247 B
Swift
13 lines
247 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"
|
|
}
|