quintodrome/scanner/track.go

18 lines
259 B
Go
Raw Normal View History

package scanner
import (
"time"
)
type Track struct {
2016-02-26 23:35:01 -09:00
Id string
Path string
Title string
Album string
Artist string
AlbumArtist string
2016-02-28 09:50:05 -09:00
Year int
2016-02-26 23:35:01 -09:00
Compilation bool
CreatedAt time.Time
UpdatedAt time.Time
}