mirror of
https://github.com/navidrome/navidrome.git
synced 2025-06-19 00:04:15 +03:00
17 lines
242 B
Go
17 lines
242 B
Go
package scanner
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Track struct {
|
|
Id string
|
|
Path string
|
|
Title string
|
|
Album string
|
|
Artist string
|
|
AlbumArtist string
|
|
Compilation bool
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
} |