log101-dot-dev-services/models/Comment.go
2024-06-25 15:13:24 +03:00

9 lines
105 B
Go

package models
// Gorm model
type Comment struct {
Body string
PostId string
Username string
}