9 lines
248 B
Go
9 lines
248 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"`
|
|
}
|