2020-10-18 15:10:11 -08:00
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
type ArtistInfo struct {
|
|
|
|
|
ID string
|
|
|
|
|
Name string
|
2020-10-20 07:33:55 -08:00
|
|
|
MBID string
|
|
|
|
|
Biography string
|
2020-10-18 15:10:11 -08:00
|
|
|
SmallImageUrl string
|
|
|
|
|
MediumImageUrl string
|
|
|
|
|
LargeImageUrl string
|
2020-10-18 18:02:30 -08:00
|
|
|
LastFMUrl string
|
2020-10-21 17:43:01 -08:00
|
|
|
SimilarArtists Artists
|
2020-10-18 15:10:11 -08:00
|
|
|
}
|