blueddit/backend/models/post.go

12 lines
301 B
Go
Raw Permalink Normal View History

package models
import "time"
type Post struct {
ID uint `gorm:"primaryKey" json:"id"`
Title string `json:"title"`
Content string `json:"content"`
Upvotes int `json:"upvotes"`
Downvotes int `json:"downvotes"`
CreatedAt time.Time `json:"created_at"`
}