mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 15:20:31 +05:30
8 lines
179 B
Kotlin
8 lines
179 B
Kotlin
|
package com.github.libretube.obj
|
||
|
|
||
|
data class ShareData(
|
||
|
val currentChannel: String ? = null,
|
||
|
val currentVideo: String ? = null,
|
||
|
val currentPlaylist: String ? = null
|
||
|
)
|