mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-07-21 10:38:28 +00:00
7 lines
125 B
Go
7 lines
125 B
Go
package files
|
|
|
|
// Sorting contains a sorting order.
|
|
type Sorting struct {
|
|
By string `json:"by"`
|
|
Asc bool `json:"asc"`
|
|
}
|