mirror of
https://github.com/0x2E/fusion.git
synced 2025-06-08 05:27:15 +09:00
6 lines
154 B
Go
6 lines
154 B
Go
package server
|
|
|
|
type Paginate struct {
|
|
PageSize int `query:"page_size" validate:"omitnil,min=0"`
|
|
Page int `query:"page" validate:"omitnil,min=0"`
|
|
}
|