2019-05-14 16:04:17 +02:00
|
|
|
package config
|
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// Thumbnail gives direct access to width and height for a thumbnail setting
|
2019-05-14 16:04:17 +02:00
|
|
|
type Thumbnail struct {
|
|
|
|
Name string
|
|
|
|
Width int
|
|
|
|
Height int
|
|
|
|
}
|
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// Thumbnails is a list of default thumbnail size available for the app
|
2019-05-14 16:04:17 +02:00
|
|
|
var Thumbnails []Thumbnail
|