arimelody-web/model/credit.go

11 lines
242 B
Go
Raw Permalink Normal View History

package model
2024-09-03 08:07:45 +01:00
type (
Credit struct {
Release *Release `json:"release"`
Artist *Artist `json:"artist"`
Role string `json:"role"`
Primary bool `json:"primary" db:"is_primary"`
2024-09-03 08:07:45 +01:00
}
)