feat(models): add alias to credit

This commit is contained in:
Masahiko AMANO 2025-01-17 20:45:48 +03:00
parent cf444831f3
commit a1bb6a2dbc

View File

@ -14,11 +14,13 @@ type Role struct {
type PersonCredit struct { type PersonCredit struct {
Track TrackBrief `json:"track"` Track TrackBrief `json:"track"`
Role Role `json:"role"` Role Role `json:"role"`
Alias string `json:"alias"`
} }
type TrackCredit struct { type TrackCredit struct {
Person PersonBrief `json:"person"` Person PersonBrief `json:"person"`
Role Role `json:"role"` Role Role `json:"role"`
Alias string `json:"alias"`
} }
type PersonBrief struct { type PersonBrief struct {