feat: add full url

This commit is contained in:
2024-09-20 11:36:27 +08:00
parent 17d49d0d35
commit 55af38931e
3 files changed
+46

No files matched your search

@@ -0,0 +1,23 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/9/20
*/
package cn.rtast.fancybot.entity.wiki
import com.google.gson.annotations.SerializedName
data class PageInfoResponse(
val query: Query
) {
data class Query(
val pages: Map<String, PageInfo>
)
data class PageInfo(
@SerializedName("fullurl")
val fullUrl: String
)
}