wireguard-dashboard/http/param/base.go
2024-06-03 17:09:45 +08:00

11 lines
190 B
Go

package param
type page struct {
Current int `json:"current" form:"current" binding:"required"`
Size int `json:"size" form:"size" binding:"required"`
}
type OnlyPage struct {
page
}