mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-17 12:32:24 +03:00
16 lines
254 B
Go
16 lines
254 B
Go
package model
|
|
|
|
type Genre struct {
|
|
ID string `json:"id" orm:"column(id)"`
|
|
Name string
|
|
SongCount int
|
|
AlbumCount int
|
|
}
|
|
|
|
type Genres []Genre
|
|
|
|
type GenreRepository interface {
|
|
GetAll() (Genres, error)
|
|
Put(m *Genre) error
|
|
}
|