filebrowser/settings/branding.go
2020-01-09 17:24:59 +00:00

10 lines
263 B
Go

package settings
// Branding contains the branding settings of the app.
type Branding struct {
Name string `json:"name"`
DisableExternal bool `json:"disableExternal"`
Files string `json:"files"`
Theme string `json:"theme"`
}