mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-11 22:44:47 +02:00
15 lines
188 B
Swift
15 lines
188 B
Swift
//
|
|
// PlayerState.swift
|
|
// App
|
|
//
|
|
// Created by Ron Heft on 8/16/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum PlayerState: Codable {
|
|
case IDLE
|
|
case BUFFERING
|
|
case READY
|
|
case ENDED
|
|
}
|