mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-13 07:24:55 +02:00
15 lines
239 B
Swift
15 lines
239 B
Swift
//
|
|
// PlayerState.swift
|
|
// App
|
|
//
|
|
// Created by Ron Heft on 8/16/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum PlayerState: String, Codable {
|
|
case idle = "IDLE"
|
|
case buffering = "BUFFERING"
|
|
case ready = "READY"
|
|
case ended = "ENDED"
|
|
}
|