mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
14 lines
412 B
Kotlin
14 lines
412 B
Kotlin
package com.github.libretube.constants
|
|
|
|
object IntentData {
|
|
const val videoId = "videoId"
|
|
const val channelId = "channelId"
|
|
const val channelName = "channelName"
|
|
const val playlistId = "playlistId"
|
|
const val timeStamp = "timeStamp"
|
|
const val position = "position"
|
|
const val fileName = "fileName"
|
|
const val openQueueOnce = "openQueue"
|
|
const val playlistType = "playlistType"
|
|
}
|