mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
15 lines
309 B
Go
15 lines
309 B
Go
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(...QueryOptions) (Genres, error)
|
|
Put(*Genre) error
|
|
}
|