13 lines
287 B
Swift
13 lines
287 B
Swift
import Foundation
|
|
|
|
public struct InjectionValues {
|
|
|
|
public var client: JellyfinClient?
|
|
public var userId: String?
|
|
public var imageService: ImageService?
|
|
public var webSocketClient: WebSocketClient?
|
|
public var persistence: PersistenceService?
|
|
|
|
public init() {}
|
|
|
|
}
|