chore: chore: chore: chore: chore: chore: chore: chore: chore: chore: chore: chore

This commit is contained in:
2024-09-29 14:15:16 +08:00
parent e2b6ffff38
commit 44e3e093d1
7 files changed
+48 -141

No files matched your search

@@ -1,20 +0,0 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/9/25
*/
package cn.rtast.fancybot.entity.music.qq
data class CoverImage(
val response: Response
) {
data class Response(
val data: Data
)
data class Data(
val imageUrl: String
)
}
@@ -1,18 +0,0 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/9/25
*/
package cn.rtast.fancybot.entity.music.qq
data class QMSearchResult(
val id: Long,
val name: String,
val singers: String,
val interval: Int,
val mid: String,
val timestamp: Long,
val albumUrl: String
)
@@ -25,19 +25,7 @@ data class QQMSearch(
)
data class Song(
@SerializedName("albummid")
val albumMid: String,
val interval: Int,
@SerializedName("songmid")
val songMid: String,
@SerializedName("songid")
val songId: Long,
@SerializedName("songname")
val songName: String,
val singer: List<Singer>,
)
data class Singer(
val name: String
)
}