2022-09-28 09:01:17 +02:00
|
|
|
package customize
|
2022-04-15 09:42:07 +02:00
|
|
|
|
|
|
|
// UISettings represents user interface settings.
|
|
|
|
type UISettings struct {
|
|
|
|
Scrollbar bool `json:"scrollbar" yaml:"Scrollbar"`
|
|
|
|
Zoom bool `json:"zoom" yaml:"Zoom"`
|
|
|
|
Theme string `json:"theme" yaml:"Theme"`
|
|
|
|
Language string `json:"language" yaml:"Language"`
|
2022-09-28 09:01:17 +02:00
|
|
|
TimeZone string `json:"timeZone" yaml:"TimeZone"`
|
2022-04-15 09:42:07 +02:00
|
|
|
}
|