Files
gonic/model/cover.go
2019-03-29 17:14:33 +00:00

11 lines
143 B
Go

package model
// Cover represents the covers table
type Cover struct {
Base
Album Album
AlbumID string
Image []byte
Path string
}