Create & Init Project...
This commit is contained in:
12
app/interface/main/favorite/model/music.go
Normal file
12
app/interface/main/favorite/model/music.go
Normal file
@ -0,0 +1,12 @@
|
||||
package model
|
||||
|
||||
type MusicResult struct {
|
||||
Code int `json:"code"`
|
||||
Data map[int64]*Music `json:"data"`
|
||||
}
|
||||
|
||||
type Music struct {
|
||||
ID int64 `json:"song_id"`
|
||||
Cover string `json:"cover_url"`
|
||||
Title string `json:"title"`
|
||||
}
|
Reference in New Issue
Block a user