14 lines
511 B
Go
14 lines
511 B
Go
package model
|
|
|
|
// Block is the basic data unit
|
|
type Block struct {
|
|
ID string `json:"id"`
|
|
ParentID string `json:"parentId"`
|
|
Schema int64 `json:"schema"`
|
|
Type string `json:"type"`
|
|
Title string `json:"title"`
|
|
Fields map[string]interface{} `json:"fields"`
|
|
CreateAt int64 `json:"createAt"`
|
|
UpdateAt int64 `json:"updateAt"`
|
|
DeleteAt int64 `json:"deleteAt"`
|
|
}
|