mirror of
https://github.com/watn3y/steamsalty.git
synced 2025-04-20 00:11:23 +02:00
9 lines
250 B
Go
9 lines
250 B
Go
package steam
|
|
|
|
type CommentResponse struct {
|
|
Success bool `json:"success"`
|
|
Start int `json:"start"`
|
|
TotalCount int `json:"total_count"`
|
|
CommentsHTML string `json:"comments_html"`
|
|
Timelastpost int `json:"timelastpost"`
|
|
}
|