mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
13 lines
436 B
Go
13 lines
436 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type AnnotatedRepository interface {
|
|
IncPlayCount(itemID string, ts time.Time) error
|
|
SetStar(starred bool, itemIDs ...string) error
|
|
SetRating(rating int, itemID string) error
|
|
}
|
|
|
|
// While I can't find a better way to make these fields optional in the models, I keep this list here
|
|
// to be used in other packages
|
|
var AnnotationFields = []string{"playCount", "playDate", "rating", "starred", "starredAt"}
|