mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
14 lines
206 B
Go
14 lines
206 B
Go
package generic
|
|
|
|
type SortDirection string
|
|
|
|
const (
|
|
SortDirectionAsc SortDirection = "asc"
|
|
SortDirectionDesc SortDirection = "desc"
|
|
)
|
|
|
|
type ListSort struct {
|
|
Key string
|
|
Direction SortDirection
|
|
}
|