mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
12 lines
216 B
Kotlin
12 lines
216 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@Serializable
|
|
data class FreeTubeVideo(
|
|
val videoId: String,
|
|
val title: String,
|
|
val author: String,
|
|
val authorId: String
|
|
)
|