searchhut/graph/model/page.go

19 lines
389 B
Go
Raw Normal View History

2022-07-09 15:48:03 +02:00
package model
import (
"time"
)
type Page struct {
ID int `json:"id"`
URL string `json:"url"`
LastIndexed time.Time `json:"last_indexed"`
Title *string `json:"title"`
Language *string `json:"language"`
Description *string `json:"description"`
Author *string `json:"author"`
Excerpt *string `json:"excerpt"`
DomainID int
}