piwigo-cli/internal/piwigo/derivatives.go
2021-12-21 11:31:48 +01:00

10 lines
172 B
Go

package piwigo
type Derivatives map[string]Derivative
type Derivative struct {
Height int `json:"height"`
Width int `json:"width"`
Url string `json:"url"`
}