mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add Genre filters to UI
This commit is contained in:
parent
c56c7c865e
commit
20b7e5c49b
13 changed files with 108 additions and 32 deletions
15
model/genre.go
Normal file
15
model/genre.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
package model
|
||||
|
||||
type Genre struct {
|
||||
ID string `json:"id" orm:"column(id)"`
|
||||
Name string `json:"name"`
|
||||
SongCount int `json:"-"`
|
||||
AlbumCount int `json:"-"`
|
||||
}
|
||||
|
||||
type Genres []Genre
|
||||
|
||||
type GenreRepository interface {
|
||||
GetAll() (Genres, error)
|
||||
Put(m *Genre) error
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue