mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-30 03:41:57 +08:00
13 lines
284 B
Go
13 lines
284 B
Go
package config
|
|
|
|
// Thumb represents thumbnail info for use in client apps.
|
|
type Thumb struct {
|
|
Size string `json:"size"`
|
|
Use string `json:"use"`
|
|
Width int `json:"w"`
|
|
Height int `json:"h"`
|
|
}
|
|
|
|
// Thumbs is a list of thumbnails for use in client apps.
|
|
var Thumbs []Thumb
|