-
Notifications
You must be signed in to change notification settings - Fork 0
/
struct_win.go
34 lines (33 loc) · 847 Bytes
/
struct_win.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package NeteaseMusicPlaying
type HistoryStruct struct {
Track struct {
Source struct {
SourceId int64 `json:"SourceId"`
SourceName string `json:"SourceName"`
} `json:"Source"`
Id int64 `json:"id"`
Name string `json:"name"`
Artists []struct {
Id int64 `json:"id"`
Name string `json:"name"`
} `json:"ar"`
Album struct {
Id int64 `json:"id"`
Name string `json:"name"`
Pic int64 `json:"pic"`
} `json:"al"`
Cd string `json:"cd"`
No int `json:"no"`
Pop float64 `json:"pop"`
Fee int `json:"fee"`
Privilege struct {
Id int64 `json:"id"`
Fee int `json:"fee"`
Payed int `json:"payed"`
Pl int `json:"pl"`
Dl int `json:"dl"`
Maxbr int `json:"maxbr"`
} `json:"privilege"`
Dt int64 `json:"dt"`
} `json:"track"`
}