quintodrome/model/genre.go

15 lines
397 B
Go
Raw Normal View History

2020-01-15 13:49:09 -09:00
package model
type Genre struct {
2023-12-27 08:44:25 -09:00
ID string `structs:"id" json:"id,omitempty" toml:"id,omitempty" yaml:"id,omitempty"`
Name string `structs:"name" json:"name"`
2023-12-27 08:44:25 -09:00
SongCount int `structs:"-" json:"-" toml:"-" yaml:"-"`
AlbumCount int `structs:"-" json:"-" toml:"-" yaml:"-"`
2020-01-15 13:49:09 -09:00
}
type Genres []Genre
type GenreRepository interface {
2021-07-19 11:30:22 -08:00
GetAll(...QueryOptions) (Genres, error)
2020-01-15 13:49:09 -09:00
}