navidrome/domain/base.go

16 lines
237 B
Go
Raw Normal View History

package domain
type BaseRepository interface {
NewId(fields ...string) string
2016-03-06 01:40:36 +01:00
CountAll() (int64, error)
Exists(id string) (bool, error)
}
2016-03-04 04:44:28 +01:00
type QueryOptions struct {
SortBy string
Alpha bool
Desc bool
Offset int
Size int
}