mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-20 07:35:22 +08:00
10 lines
328 B
Go
10 lines
328 B
Go
package customize
|
|
|
|
// SearchSettings represents search UI preferences.
|
|
type SearchSettings struct {
|
|
BatchSize int `json:"batchSize" yaml:"BatchSize"`
|
|
ListView bool `json:"listView" yaml:"ListView"`
|
|
ShowTitles bool `json:"showTitles" yaml:"ShowTitles"`
|
|
ShowCaptions bool `json:"showCaptions" yaml:"ShowCaptions"`
|
|
}
|