point-tools-crawler/point/meta_post.go

12 lines
355 B
Go

package point
type MetaPost struct {
Bookmarked bool `json:"bookmarked"`
Uid int `json:"uid"`
Subscribed bool `json:"subscribed"`
Editable bool `json:"editable"`
Recommended bool `json:"recommended"`
Rec Recommendation `json:"rec"`
Post Post `json:"post"`
}