mirror of
https://github.com/sudoxnym/audiobookshelf-atv.git
synced 2026-07-29 22:20:51 +00: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
|
||
|
|
}
|