mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
11 lines
241 B
Kotlin
11 lines
241 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import java.nio.file.Path
|
|
|
|
data class PlayerNotificationData(
|
|
val title: String? = null,
|
|
val uploaderName: String? = null,
|
|
val thumbnailUrl: String? = null,
|
|
val thumbnailPath: Path? = null
|
|
)
|