8 lines
161 B
Go
8 lines
161 B
Go
|
package model
|
||
|
|
||
|
type Credit struct {
|
||
|
Artist *Artist `json:"artist"`
|
||
|
Role string `json:"role"`
|
||
|
Primary bool `json:"primary" db:"is_primary"`
|
||
|
}
|