Files
FancyBot/src/main/kotlin/cn/rtast/fancybot/entity/setu/Setu.kt
T

21 lines
341 B
Kotlin
Raw Normal View History

2024-09-03 12:32:52 +08:00
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/9/3
*/
2024-09-29 21:39:20 +08:00
package cn.rtast.fancybot.entity.setu
import com.google.gson.annotations.SerializedName
2024-09-03 12:32:52 +08:00
data class Setu(
2024-09-23 13:27:26 +08:00
val urls: URLS,
2024-09-29 21:39:20 +08:00
val r18: Boolean,
@SerializedName("author_id")
val authorId: Long,
2024-09-03 12:32:52 +08:00
) {
data class URLS(
2024-09-03 14:37:00 +08:00
val large: String
2024-09-03 12:32:52 +08:00
)
}