From 8852317d714f81d8534e06f11a8fd160c0af963e Mon Sep 17 00:00:00 2001 From: Masahiko AMANO Date: Sat, 18 Jan 2025 20:28:09 +0300 Subject: [PATCH] feat(models): add sort name field to artist model --- internal/models/objects.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/internal/models/objects.go b/internal/models/objects.go index 62b6f1f..2f7910f 100644 --- a/internal/models/objects.go +++ b/internal/models/objects.go @@ -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 {