quintodrome/models/artist.go

7 lines
92 B
Go
Raw Normal View History

package models
type Artist struct {
2016-02-28 09:50:05 -09:00
Id string
Name string
Albums map[string]bool
}