mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
9 lines
198 B
Kotlin
9 lines
198 B
Kotlin
|
package com.github.libretube.obj
|
||
|
|
||
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
||
|
|
||
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
||
|
data class Subscribe(
|
||
|
var channelId: String? = null
|
||
|
)
|