mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-23 20:25:44 +02:00
13 lines
189 B
Swift
13 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
|
|
}
|