filebrowser/files/sorting.go
2019-01-05 22:44:33 +00:00

8 lines
125 B
Go

package files
// Sorting contains a sorting order.
type Sorting struct {
By string `json:"by"`
Asc bool `json:"asc"`
}