mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-17 12:32:24 +03:00
16 lines
237 B
Go
16 lines
237 B
Go
package domain
|
|
|
|
type BaseRepository interface {
|
|
NewId(fields ...string) string
|
|
CountAll() (int64, error)
|
|
Exists(id string) (bool, error)
|
|
}
|
|
|
|
type QueryOptions struct {
|
|
SortBy string
|
|
Alpha bool
|
|
Desc bool
|
|
Offset int
|
|
Size int
|
|
}
|