feat: add some command

This commit is contained in:
2024-09-06 10:58:55 +08:00
parent 9a8ab3337f
commit 5927d9453e
5 files changed
+169 -3

No files matched your search

@@ -0,0 +1,31 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/9/6
*/
package cn.rtast.fancybot.entity.bili
data class BVID(
val data: Data
) {
data class Data(
val pic: String,
val title: String,
val owner: Owner,
val stat: Stat,
val cid: Long,
)
data class Owner(
val name: String
)
data class Stat(
val view: Long,
val favorite: Int,
val coin: Int,
val like: Int,
)
}