Files
test-iris-web-framework/app/repository/pagination.go
Eden Kirin b143983d52 User list
2023-10-25 19:54:21 +02:00

13 lines
158 B
Go

package repository
type Pagination struct {
PageSize int
Page int
}
func (p *Pagination) New() *Pagination {
p.PageSize = 50
p.Page = 1
return p
}