mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-28 16:00:31 +05:30
9 lines
201 B
Kotlin
9 lines
201 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
data class Subscribed(
|
|
var subscribed: Boolean? = null
|
|
)
|