mirror of
https://bitbucket.org/skobkin/point-tools-crawler.git
synced 2024-11-14 09:43:06 +00:00
12 lines
355 B
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"`
|
||
|
}
|