2019-01-06 06:44:33 +08:00
|
|
|
package settings
|
|
|
|
|
|
|
|
// Branding contains the branding settings of the app.
|
|
|
|
type Branding struct {
|
2023-02-16 06:30:48 +08:00
|
|
|
Name string `json:"name"`
|
|
|
|
DisableExternal bool `json:"disableExternal"`
|
|
|
|
DisableUsedPercentage bool `json:"disableUsedPercentage"`
|
|
|
|
Files string `json:"files"`
|
|
|
|
Theme string `json:"theme"`
|
|
|
|
Color string `json:"color"`
|
2019-01-06 06:44:33 +08:00
|
|
|
}
|