log101-dot-dev-services/models/Comment.go

9 lines
105 B
Go
Raw Normal View History

2024-06-18 18:36:30 +00:00
package models
// Gorm model
type Comment struct {
Body string
PostId string
Username string
}