yao/page/types.go
2022-02-09 09:17:23 +08:00

14 lines
308 B
Go

package page
import (
"github.com/yaoapp/gou"
"github.com/yaoapp/yao/share"
)
// Page 页面格式
type Page struct {
gou.Flow
APIs map[string]share.API `json:"apis,omitempty"`
Filters map[string]share.Filter `json:"filters,omitempty"`
Page share.Page `json:"page,omitempty"`
}