Files
gonic/model/album.go
2019-03-29 17:14:33 +00:00

11 lines
157 B
Go

package model
// Album represents the albums table
type Album struct {
BaseWithUUID
Artist Artist
ArtistID string
Title string
Tracks []Track
}