wireguard-dashboard/http/param/base.go

11 lines
190 B
Go
Raw Permalink Normal View History

2024-03-07 15:11:29 +08:00
package param
type page struct {
Current int `json:"current" form:"current" binding:"required"`
Size int `json:"size" form:"size" binding:"required"`
}
2024-06-03 17:09:45 +08:00
type OnlyPage struct {
page
}