navidrome/engine/common.go

30 lines
434 B
Go
Raw Normal View History

2016-03-10 00:28:11 +01:00
package engine
import (
"errors"
"time"
)
type Child struct {
Id string
Title string
IsDir bool
Parent string
Album string
Year int
Artist string
Genre string
CoverArt string
Starred time.Time
Track int
Duration int
Size string
Suffix string
BitRate int
ContentType string
}
var (
2016-03-10 17:25:15 +01:00
ErrDataNotFound = errors.New("Data Not Found")
2016-03-10 00:28:11 +01:00
)