mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
29 lines
431 B
Go
29 lines
431 B
Go
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 (
|
|
DataNotFound = errors.New("Data Not Found")
|
|
)
|