navidrome/models/media_file.go

15 lines
200 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
}