mirror of
https://bitbucket.org/skobkin/point-api-go.git
synced 2025-03-27 18:12:39 +00:00
14 lines
362 B
Go
14 lines
362 B
Go
package point
|
|
|
|
// Post represents the post comment data
|
|
type Comment struct {
|
|
PostId string `json:"post_id"`
|
|
Number int `json:"id"`
|
|
ToNumber int `json:"to_comment_id"`
|
|
IsRec bool `json:"is_rec"`
|
|
Author User `json:"author"`
|
|
Text string `json:"text"`
|
|
Files []string `json:"files"`
|
|
Created string `json:"created"`
|
|
}
|