navidrome/model/properties.go
2020-01-14 22:22:34 -05:00

17 lines
273 B
Go

package model
const (
PropLastScan = "LastScan"
)
type Property struct {
ID string
Value string
}
type PropertyRepository interface {
Put(id string, value string) error
Get(id string) (string, error)
DefaultGet(id string, defaultValue string) (string, error)
}