filebrowser/settings/branding.go
2025-03-09 21:08:07 +01:00

13 lines
440 B
Go

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