mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-12 15:04:43 +02:00
15 lines
249 B
Swift
15 lines
249 B
Swift
|
//
|
||
|
// PlaybackMetadata.swift
|
||
|
// App
|
||
|
//
|
||
|
// Created by Ron Heft on 8/16/22.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
class PlaybackMetadata: Codable {
|
||
|
var duration: Double = 0
|
||
|
var currentTime: Double = 0
|
||
|
var playerState: PlayerState = PlayerState.IDLE
|
||
|
}
|