mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
de906865c8
Co-authored-by: karen <karen@host.com>
11 lines
303 B
Kotlin
11 lines
303 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import kotlinx.serialization.SerialName
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@Serializable
|
|
data class FreetubeSubscriptions (
|
|
@SerialName("_id") val id: String = "",
|
|
val name: String = "",
|
|
val subscriptions: List<FreetubeSubscription> = emptyList(),
|
|
) |