yao/page/types.go
2021-10-20 19:23:16 +08:00

14 lines
310 B
Go

package page
import (
"github.com/yaoapp/gou"
"github.com/yaoapp/xiang/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"`
}