hugo-cms/models/posts.go

23 lines
341 B
Go
Raw Normal View History

2025-01-27 14:23:54 +11:00
package models
import "time"
type PostState string
const (
PostStateDraft PostState = "draft"
PostStatePublished PostState = "published"
)
type Post struct {
ID int64
SiteID int64
2025-02-01 09:42:32 +11:00
OwnerID int64
2025-01-27 14:23:54 +11:00
Title string
Body string
State PostState
PostDate time.Time
CreatedAt time.Time
UpdatedAt time.Time
2025-01-27 14:23:54 +11:00
}