feat(models): add sort name field to artist model

This commit is contained in:
Masahiko AMANO 2025-01-18 20:28:09 +03:00
parent 3f4e8004ca
commit 8852317d71

View File

@ -33,8 +33,9 @@ type Person struct {
}
type ArtistBrief struct {
ID string `json:"id"`
Name string `json:"name"`
ID string `json:"id"`
Name string `json:"name"`
SortName string `json:"sortName"`
}
type Artist struct {