Files
navidrome/domain/property.go
T
2016-03-02 09:10:28 -05:00

14 lines
237 B
Go

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