mirror of
https://bitbucket.org/skobkin/point-tools-crawler.git
synced 2024-11-14 01:33:05 +00:00
8 lines
153 B
Go
8 lines
153 B
Go
package point
|
|
|
|
type Recommendation struct {
|
|
Text string `json:"text"`
|
|
Comment_id int `json:"comment_id"`
|
|
Author User `json:"author"`
|
|
}
|