forked from ebhomengo/niki
14 lines
262 B
Go
14 lines
262 B
Go
|
package param
|
||
|
|
||
|
type SortDirection string
|
||
|
|
||
|
const (
|
||
|
AscSortDirection = SortDirection("asc")
|
||
|
DescSortDirection = SortDirection("desc")
|
||
|
)
|
||
|
|
||
|
type SortRequest struct {
|
||
|
Field string `query:"sort_field"`
|
||
|
Direction SortDirection `query:"sort_direction"`
|
||
|
}
|