mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-12 06:54:50 +02:00
16 lines
188 B
Swift
16 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
|
||
|
}
|