New class to share Video/Channel/Playlist name

This commit is contained in:
shantanu1k 2022-10-28 20:02:50 +05:30
parent 2b45a46b2c
commit 433a929ac3

View File

@ -0,0 +1,7 @@
package com.github.libretube.obj
data class ShareData(
val currentChannel: String ? = null,
val currentVideo: String ? = null,
val currentPlaylist: String ? = null
)