Files
bh_go_models/models/article.go
Frederick Holland ee34f9a33f Added article
2025-10-16 21:30:49 +11:00

14 lines
345 B
Go

package models
type Article struct {
Id string `gorm:"primaryKey" json:"id"`
Author User `json:"author"`
Title string `json:"title"`
Sections []ArticleSection `gorm:"serializer:json" json:"sections"`
}
type ArticleSection struct {
Type string `json:"type"`
Content string `json:"content"`
}