mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-07 20:44:46 +02:00
14 lines
235 B
Swift
14 lines
235 B
Swift
//
|
|
// PlaybackReport.swift
|
|
// App
|
|
//
|
|
// Created by Rasmus Krämer on 15.04.22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct PlaybackReport: Decodable, Encodable {
|
|
var currentTime: Double
|
|
var duration: Double
|
|
var timeListened: Double
|
|
}
|