mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-08 04:54:47 +02:00
14 lines
189 B
Swift
14 lines
189 B
Swift
|
//
|
||
|
// PlaybackReport.swift
|
||
|
// App
|
||
|
//
|
||
|
// Created by Rasmus Krämer on 12.04.22.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
import RealmSwift
|
||
|
|
||
|
class PlaybackReport: Object {
|
||
|
@Persisted var token: String
|
||
|
}
|