rimgo/types/Comment.go

16 lines
232 B
Go
Raw Normal View History

2022-01-18 23:05:06 +00:00
package types
type Comment struct {
Comments []Comment
User User
Id string
Comment string
Upvotes int64
Downvotes int64
Platform string
CreatedAt string
RelTime string
UpdatedAt string
DeletedAt string
}