arimelody-web/model/credit.go

10 lines
242 B
Go

package model
type (
Credit struct {
Release *Release `json:"release"`
Artist *Artist `json:"artist"`
Role string `json:"role"`
Primary bool `json:"primary" db:"is_primary"`
}
)