mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add multiple genres to MediaFile
This commit is contained in:
parent
7cd3a8ba67
commit
39da741a80
21 changed files with 309 additions and 72 deletions
|
@ -3,8 +3,8 @@ package model
|
|||
type Genre struct {
|
||||
ID string `json:"id" orm:"column(id)"`
|
||||
Name string
|
||||
SongCount int
|
||||
AlbumCount int
|
||||
SongCount int `json:"-"`
|
||||
AlbumCount int `json:"-"`
|
||||
}
|
||||
|
||||
type Genres []Genre
|
||||
|
|
|
@ -28,6 +28,7 @@ type MediaFile struct {
|
|||
Duration float32 `json:"duration"`
|
||||
BitRate int `json:"bitRate"`
|
||||
Genre string `json:"genre"`
|
||||
Genres Genres `json:"genres"`
|
||||
FullText string `json:"fullText"`
|
||||
SortTitle string `json:"sortTitle,omitempty"`
|
||||
SortAlbumName string `json:"sortAlbumName,omitempty"`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue