mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-29 21:43:19 +08: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"`
|
|
}
|