7 lines
150 B
Go
7 lines
150 B
Go
|
package config
|
||
|
|
||
|
// SearchSettings represents search UI preferences.
|
||
|
type SearchSettings struct {
|
||
|
BatchSize int `json:"batchSize" yaml:"BatchSize"`
|
||
|
}
|