mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-01-07 10:00:31 +05:30
19 lines
548 B
Kotlin
19 lines
548 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
data class Comment(
|
|
val author: String? = null,
|
|
val commentId: String? = null,
|
|
val commentText: String? = null,
|
|
val commentedTime: String? = null,
|
|
val commentorUrl: String? = null,
|
|
val repliesPage: String? = null,
|
|
val hearted: Boolean? = null,
|
|
val likeCount: Int? = null,
|
|
val pinned: Boolean? = null,
|
|
val thumbnail: String? = null,
|
|
val verified: Boolean? = null
|
|
)
|