8 lines
233 B
Go
8 lines
233 B
Go
|
package model
|
||
|
|
||
|
type PageParams struct {
|
||
|
PageNo int `json:"pageNo,omitempty"`
|
||
|
CountPerPage int `json:"countPerPage,omitempty"`
|
||
|
SortCol string `json:"sortCol,omitempty"`
|
||
|
SortDirection string `json:"sortDirection,omitempty"`
|
||
|
}
|