From 3f4e8004ca6a92a6a3d9f95e34522a53cdc0de6d Mon Sep 17 00:00:00 2001 From: Masahiko AMANO Date: Sat, 18 Jan 2025 20:24:09 +0300 Subject: [PATCH] feat(models): add sort name field to track model --- internal/models/objects.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/models/objects.go b/internal/models/objects.go index 7bef04c..62b6f1f 100644 --- a/internal/models/objects.go +++ b/internal/models/objects.go @@ -45,6 +45,7 @@ type Artist struct { type TrackBrief struct { ID string `json:"id"` Name string `json:"name"` + SortName string `json:"sortName"` Duration float32 `json:"duration"` ReleaseDate string `json:"release_date"` AcquireDatetime time.Time `json:"acquire_datetime"`