quintodrome/models/media_file.go

17 lines
245 B
Go
Raw Normal View History

package models
2016-02-26 23:35:01 -09:00
import (
"time"
)
type MediaFile struct {
2016-02-26 23:35:01 -09:00
Id string
Path string
Title string
Album string
Artist string
AlbumArtist string
Compilation bool
CreatedAt time.Time
UpdatedAt time.Time
}