14 lines
287 B
Go
14 lines
287 B
Go
package fields
|
|
|
|
// swagger:enum PostStage
|
|
// ENUM( Pending, Processing, Completed, Deleted)
|
|
type PostStage int16
|
|
|
|
// swagger:enum PostStatus
|
|
// ENUM( Pending, Verified, Blocked)
|
|
type PostStatus int16
|
|
|
|
// swagger:enum PostType
|
|
// ENUM( Article, Picture, Video, Audio)
|
|
type PostType int16
|