hugo-cms/models/posts.go

23 lines
359 B
Go
Raw Permalink Normal View History

2025-01-27 03:23:54 +00:00
package models
import "time"
type PostState string
const (
PostStateDraft PostState = "draft"
PostStatePublished PostState = "published"
)
type Post struct {
2025-02-16 00:43:22 +00:00
ID int64
SiteID int64
OwnerID int64
Title string
Body string
State PostState
PublishDate time.Time
CreatedAt time.Time
UpdatedAt time.Time
2025-01-27 03:23:54 +00:00
}