mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-19 15:14:42 +08:00
12 lines
398 B
Go
12 lines
398 B
Go
package customize
|
|
|
|
// 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"`
|
|
TimeZone string `json:"timeZone" yaml:"TimeZone"`
|
|
StartPage string `json:"startPage" yaml:"StartPage"`
|
|
}
|