arimelody.me/music/model/credit.go

9 lines
198 B
Go
Raw Normal View History

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