mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-13 15:34:50 +02:00
14 lines
249 B
Swift
14 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
|
|
}
|