mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-13 10:47:19 +03:00
13 lines
195 B
Go
13 lines
195 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type MediaFile struct {
|
|
Id string
|
|
Path string
|
|
Album string
|
|
Artist string
|
|
Title string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
} |