2024-07-21 09:24:56 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
//type DocumentModels struct {
|
|
|
|
// CreateDocumentBlock CreateDocumentBlock
|
|
|
|
//}
|
|
|
|
|
2024-07-22 17:55:16 +00:00
|
|
|
type (
|
|
|
|
CreateDocumentBlock struct {
|
|
|
|
Order int64 `json:"order"`
|
|
|
|
Content string `json:"content"`
|
|
|
|
}
|
|
|
|
|
|
|
|
UpdateDocumentBlock struct {
|
|
|
|
Order int64 `json:"order"`
|
|
|
|
Content string `json:"content"`
|
|
|
|
}
|
|
|
|
)
|