navidrome/scanner/track.go

15 lines
197 B
Go
Raw Normal View History

package scanner
import (
"time"
)
type Track struct {
Id string
Path string
Album string
Artist string
Title string
CreatedAt time.Time
UpdatedAt time.Time
}