mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-28 07:50:31 +05:30
16 lines
337 B
Kotlin
16 lines
337 B
Kotlin
package com.github.libretube.update
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
data class Reactions(
|
|
val confused: Int,
|
|
val eyes: Int,
|
|
val heart: Int,
|
|
val hooray: Int,
|
|
val laugh: Int,
|
|
val rocket: Int,
|
|
val total_count: Int,
|
|
val url: String
|
|
)
|