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

This commit is contained in:
2025-01-18 20:28:09 +03:00
parent 3f4e8004ca
commit 8852317d71
+1
View File
@@ -35,6 +35,7 @@ type Person struct {
type ArtistBrief struct {
ID string `json:"id"`
Name string `json:"name"`
SortName string `json:"sortName"`
}
type Artist struct {