micro-filebrowser/settings/branding.go

12 lines
393 B
Go
Raw Permalink Normal View History

2025-05-22 06:26:07 +00:00
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"`
}