11 lines
195 B
Go
11 lines
195 B
Go
|
package models
|
||
|
|
||
|
//type DocumentModels struct {
|
||
|
// CreateDocumentBlock CreateDocumentBlock
|
||
|
//}
|
||
|
|
||
|
type CreateDocumentBlock struct {
|
||
|
Order int64 `json:"order"`
|
||
|
Content string `json:"content"`
|
||
|
}
|