17 lines
362 B
Go
17 lines
362 B
Go
package fields
|
|
|
|
type MediaAsset struct {
|
|
Type string `json:"type"`
|
|
Media int64 `json:"media"`
|
|
Metas *MediaMetas `json:"metas,omitempty"`
|
|
Mark *string `json:"mark,omitempty"`
|
|
}
|
|
|
|
// swagger:enum PostStatus
|
|
// ENUM( draft, published )
|
|
type PostStatus int16
|
|
|
|
// swagger:enum PostType
|
|
// ENUM( Article, Picture, Video, Audio)
|
|
type PostType int16
|