Files
filebrowser/files/sorting.go
T

8 lines
125 B
Go
Raw Normal View History

2019-01-05 22:44:33 +00:00
package files
// Sorting contains a sorting order.
type Sorting struct {
By string `json:"by"`
Asc bool `json:"asc"`
}