igar/storage/media.go

11 lines
168 B
Go
Raw Normal View History

2022-02-16 23:59:19 +01:00
package storage
type (
Media struct {
Type string `json:"type"`
File string `json:"file"`
Height int `json:"height"`
Width int `json:"width"`
}
)