AnonymousOverflow/src/types/question.go

14 lines
244 B
Go
Raw Normal View History

package types
import "html/template"
type FilteredQuestion struct {
Title string
Body template.HTML
Timestamp string
AuthorName string
AuthorURL string
ShortenedBody string
2022-12-29 13:11:33 -05:00
Comments []FilteredComment
}