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