Content.go 257 B

1234567891011121314
  1. package models
  2. import (
  3. "gorm.io/gorm"
  4. "html/template"
  5. )
  6. type Content struct {
  7. gorm.Model
  8. Title string `json:"title"`
  9. Detail template.HTML `json:"detail"`
  10. Synopsis string `json:"synopsis"`
  11. Types string `json:"types"`
  12. }