mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-13 02:37:18 +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
|
|
} |