mirror of
https://bitbucket.org/skobkin/point-api-go.git
synced 2024-12-28 06:04:20 +00:00
11 lines
314 B
Go
11 lines
314 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"`
|
|
Post Post `json:"post"`
|
|
}
|