arimelody.me/music/model/credit.go

11 lines
226 B
Go
Raw Normal View History

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