mirror of
https://bitbucket.org/skobkin/point-tools-crawler.git
synced 2024-11-15 02:03:06 +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"`
|
|
}
|