igar/storage/media.go

11 lines
168 B
Go

package storage
type (
Media struct {
Type string `json:"type"`
File string `json:"file"`
Height int `json:"height"`
Width int `json:"width"`
}
)