mirror of
https://github.com/harness/drone.git
synced 2025-05-03 06:00:25 +00:00
13 lines
299 B
Go
13 lines
299 B
Go
package types
|
|
|
|
import "github.com/harness/gitness/types/enum"
|
|
|
|
// Pagination stores pagination related params
|
|
type Pagination struct {
|
|
Page int `json:"page"`
|
|
Size int `json:"size"`
|
|
Query string `json:"query"`
|
|
Sort string `json:"sort"`
|
|
Order enum.Order `json:"order"`
|
|
}
|