mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
12 lines
257 B
Kotlin
12 lines
257 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import kotlinx.serialization.SerialName
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@Serializable
|
|
data class NewPipeSubscription(
|
|
val name: String,
|
|
@SerialName("service_id") val serviceId: Int,
|
|
val url: String
|
|
)
|