feat: support card share bili video parse
This commit is contained in:
8 files changed
+54
-13
No files matched your search
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* Copyright © 2024 RTAkland
|
||||
* Author: RTAkland
|
||||
* Date: 2024/9/12
|
||||
*/
|
||||
|
||||
|
||||
package cn.rtast.fancybot.entity.bili
|
||||
|
||||
import com.google.gson.annotations.SerializedName
|
||||
|
||||
data class CardShare(
|
||||
val meta: Meta,
|
||||
) {
|
||||
data class Meta(
|
||||
@SerializedName("detail_1")
|
||||
val detail: Detail
|
||||
)
|
||||
|
||||
data class Detail(
|
||||
val title: String,
|
||||
@SerializedName("qqdocurl")
|
||||
val qqDocUrl: String,
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user