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

9 lines
105 B
Go
Raw Permalink Normal View History

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