lib/app/document.go

14 lines
223 B
Go

package app
// Document is an object type used for rendering
type Document struct {
ID string
Filename string
HTML string
ParentID string
PDF string
SagaType string
Title string
URI string
}