mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
8 lines
125 B
Go
8 lines
125 B
Go
package files
|
|
|
|
// Sorting contains a sorting order.
|
|
type Sorting struct {
|
|
By string `json:"by"`
|
|
Asc bool `json:"asc"`
|
|
}
|