nirvash/archetype/page.go

13 lines
124 B
Go
Raw Normal View History

package archetype
import (
2022-05-29 06:26:36 +00:00
"time"
)
type Page struct {
2022-05-29 06:26:36 +00:00
Title string
2022-06-05 04:34:20 +00:00
Slug string
2022-05-29 06:26:36 +00:00
Content string
Edited time.Time
}