mirror of
https://github.com/harness/drone.git
synced 2025-05-04 14:43:15 +08:00
8 lines
137 B
Go
8 lines
137 B
Go
package types
|
|
|
|
// Pagination stores pagination related params
|
|
type Pagination struct {
|
|
Page int `json:"page"`
|
|
Size int `json:"size"`
|
|
}
|