-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
00a80f7
commit ac56ff6
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
musicapi/src/main/java/com/guoyi/musicapi/kugou/KugouPlayMv.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package com.guoyi.musicapi.kugou | ||
|
||
data class KugouPlayMv( | ||
val errcode: Int, | ||
val error: String, | ||
val id: Int, | ||
val is_publish: Int, | ||
val mp3data: Mp3data, | ||
val mvdata: Mvdata, | ||
val mvicon: String, | ||
val play_count: Int, | ||
val remark: String, | ||
val singer: String, | ||
val songname: String, | ||
val status: Int, | ||
val timelength: Int, | ||
val track: Int, | ||
val type: Int | ||
) | ||
|
||
data class Mp3data( | ||
val bitrate: Int, | ||
val filesize: Int, | ||
val hash: String, | ||
val timelength: Int | ||
) | ||
|
||
data class Mvdata( | ||
val le: Le, | ||
val rq: Rq, | ||
val sq: Sq | ||
) | ||
|
||
data class Le( | ||
val backupdownurl: List<String>, | ||
val bitrate: Int, | ||
val downurl: String, | ||
val filesize: Int, | ||
val hash: String, | ||
val timelength: Int | ||
) | ||
|
||
class Rq( | ||
) | ||
|
||
class Sq( | ||
) |