mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-27 17:02:17 +03:00
18 lines
282 B
Go
18 lines
282 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type MediaFile struct {
|
|
Id string
|
|
Path string
|
|
Title string
|
|
Album string
|
|
Artist string
|
|
AlbumArtist string
|
|
AlbumId string `parent:"album"`
|
|
Compilation bool
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
} |