Files
navidrome/models/media_file.go
T
2016-02-26 01:32:31 -05:00

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
}