14 lines
139 B
Go
14 lines
139 B
Go
package models
|
|
|
|
type ArtistInfo struct {
|
|
ArtistId string
|
|
Artist string
|
|
}
|
|
|
|
type ArtistIndex struct {
|
|
Id string
|
|
Artists []ArtistInfo
|
|
}
|
|
|
|
|