Blog/Comment/comment_contract.go
2023-12-22 16:09:35 +03:00

8 lines
105 B
Go

package Comments
type Comments struct {
authorId string
text string
likes int
dislikes int
}