summaryrefslogtreecommitdiff
path: root/imagestore/storeobject.go
blob: f8343606951a19fc2c18014c85fc77dcbdccc6ad (plain)
1
2
3
4
5
6
7
8
package imagestore

type StoreObject struct {
	Name     string // Unique identifier
	MimeType string // i.e. image/jpg
	Type     string // i.e. thumb
	Url      string // if publicly available
}