Files
navidrome/domain/properties.go
T
2020-01-09 22:44:45 -05:00

17 lines
274 B
Go

package domain
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)
}