2020-01-15 13:49:09 -09:00
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
type Genre struct {
|
2021-07-15 15:53:40 -08:00
|
|
|
ID string `json:"id" orm:"column(id)"`
|
2020-01-15 13:49:09 -09:00
|
|
|
Name string
|
|
|
|
|
SongCount int
|
|
|
|
|
AlbumCount int
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Genres []Genre
|
|
|
|
|
|
|
|
|
|
type GenreRepository interface {
|
|
|
|
|
GetAll() (Genres, error)
|
2021-07-15 15:53:40 -08:00
|
|
|
Put(m *Genre) error
|
2020-01-15 13:49:09 -09:00
|
|
|
}
|