AnonymousOverflow/src/types/question.go

15 lines
268 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
2023-02-04 13:40:57 -05:00
Tags []string
}