focalboard/server/model/block.go
2020-10-22 15:22:36 +02:00

15 lines
512 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"`
}