13 lines
248 B
Go
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"`
|
|
}
|