mirror of
https://github.com/navidrome/navidrome.git
synced 2025-05-02 19:31:45 +03:00
17 lines
245 B
Go
17 lines
245 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type MediaFile struct {
|
|
Id string
|
|
Path string
|
|
Title string
|
|
Album string
|
|
Artist string
|
|
AlbumArtist string
|
|
Compilation bool
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
} |