quintodrome/models/media_file.go

15 lines
200 B
Go
Raw Normal View History

package models
import (
"time"
)
type MediaFile struct {
Id string
Path string
Album string
Artist string
Title string
CreatedAt time.Time
UpdatedAt time.Time
}