arimelody.me/music/model/credit.go

9 lines
198 B
Go
Raw Normal View History

package model
type Credit struct {
2024-09-01 23:15:23 +00:00
Release Release `json:"release"`
Artist Artist `json:"artist"`
Role string `json:"role"`
Primary bool `json:"primary" db:"is_primary"`
}