advplyr.audiobookshelf-app/ios/App/Shared/models/PlayerState.swift

16 lines
239 B
Swift
Raw Normal View History

//
// PlayerState.swift
// App
//
// Created by Ron Heft on 8/16/22.
//
import Foundation
2023-02-09 02:38:56 +01:00
enum PlayerState: String, Codable {
case idle = "IDLE"
case buffering = "BUFFERING"
case ready = "READY"
case ended = "ENDED"
}