mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-01-09 11:00:31 +05:30
12 lines
301 B
Kotlin
12 lines
301 B
Kotlin
|
package com.github.libretube.obj
|
||
|
|
||
|
import kotlinx.serialization.SerialName
|
||
|
import kotlinx.serialization.Serializable
|
||
|
|
||
|
@Serializable
|
||
|
data class FreetubeSubscription(
|
||
|
val name: String,
|
||
|
@SerialName("id") val serviceId: String,
|
||
|
val url: String = "https://www.youtube.com/channel/$serviceId",
|
||
|
)
|