mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-01-06 01:20:29 +05:30
12 lines
292 B
Kotlin
12 lines
292 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
data class Subscription(
|
|
var url: String? = null,
|
|
var name: String? = null,
|
|
var avatar: String? = null,
|
|
var verified: Boolean? = null
|
|
)
|