mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-13 07:24:55 +02:00
14 lines
223 B
Swift
14 lines
223 B
Swift
//
|
|
// PlaybackMetadata.swift
|
|
// App
|
|
//
|
|
// Created by Ron Heft on 8/16/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct PlaybackMetadata: Codable {
|
|
let duration: Double
|
|
let currentTime: Double
|
|
let playerState: PlayerState
|
|
}
|