summaryrefslogtreecommitdiff
path: root/content/item.go
blob: 7b25b14cf42f341190382fe63ba58986a0a3d2e5 (plain)
1
2
3
4
5
6
7
8
9
package content

// Item should only be embedded into content type structs.
type Item struct {
	ID        int    `json:"id"`
	Slug      string `json:"slug"`
	Timestamp int64  `json:"timestamp"`
	Updated   int64  `json:"updated"`
}