123456789101112131415161718192021 |
- package models
- import (
- "gorm.io/gorm"
- "html/template"
- )
- type Content struct {
- gorm.Model
- Title string `json:"title"`
- Detail template.HTML `json:"detail"`
- Synopsis string `json:"synopsis"`
- Types string `json:"types"`
- }
- type ContentDto struct {
- ID uint `json:"id"`
- Title string `json:"title"`
- Detail template.HTML `json:"detail"`
- Synopsis string `json:"synopsis"`
- Types string `json:"types"`
- }
|