Track artist popularity
[brackets.git] / types / artist.go
CommitLineData
2353fc58
JC
1package types
2
3import "github.com/zmb3/spotify"
4
5type Artist struct {
6 ID spotify.ID `json:"id"`
7 Name string `json:"name"`
8 Popularity int `json:"popularity"`
9}