feat: add the history of today command
This commit is contained in:
6 files changed
+82
-3
No files matched your search
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Copyright © 2024 RTAkland
|
||||
* Author: RTAkland
|
||||
* Date: 2024/10/8
|
||||
*/
|
||||
|
||||
|
||||
package cn.rtast.fancybot.entity.tianxing
|
||||
|
||||
import com.google.gson.annotations.SerializedName
|
||||
|
||||
data class HistoryOfToday(
|
||||
val result: Result
|
||||
) {
|
||||
data class Result(
|
||||
val list: List<Element>
|
||||
)
|
||||
|
||||
data class Element(
|
||||
val title: String,
|
||||
@SerializedName("lsdate")
|
||||
val lsDate: String
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user