log101-dot-dev-services/models/Comment.go
2024-06-18 21:36:30 +03:00

9 lines
105 B
Go

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