18 lines
303 B
Go
18 lines
303 B
Go
package models
|
|
|
|
//type DocumentModels struct {
|
|
// CreateDocumentBlock CreateDocumentBlock
|
|
//}
|
|
|
|
type (
|
|
CreateDocumentBlock struct {
|
|
Order int64 `json:"order"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
UpdateDocumentBlock struct {
|
|
Order int64 `json:"order"`
|
|
Content string `json:"content"`
|
|
}
|
|
)
|