AnonymousOverflow/src/types/question.go
2023-02-04 13:40:57 -05:00

14 lines
268 B
Go

package types
import "html/template"
type FilteredQuestion struct {
Title string
Body template.HTML
Timestamp string
AuthorName string
AuthorURL string
ShortenedBody string
Comments []FilteredComment
Tags []string
}