nirvash/archetype/page.go

12 lines
124 B
Go

package archetype
import (
"time"
)
type Page struct {
Title string
Slug string
Content string
Edited time.Time
}