14 lines
372 B
Swift
14 lines
372 B
Swift
import Foundation
|
|
import LuminateCore
|
|
|
|
public struct InjectionValues {
|
|
|
|
public var client: JellyfinClient?
|
|
public var userId: String?
|
|
public var imageService: ImageService?
|
|
public var webSocketClient: WebSocketClient?
|
|
public var persistence: PersistenceService?
|
|
public var pageAnimationTracker: (any PageAnimationTracking)?
|
|
|
|
public init() {}
|
|
}
|