This repository has been archived on 2026-01-01. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
393 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"`
}