Files
YouduWiki/backend/domain/notion.go
2026-05-21 19:52:45 +08:00

13 lines
248 B
Go

package domain
type Page struct {
ID string `json:"id"`
Title string `json:"title"`
ParentId string `json:"parent_id"`
Content string `json:"content"`
}
type PageInfo struct {
Id string `json:"id"`
Title string `json:"title"`
}