Files
AnonymousOverflow/src/types/answer.go
T
2023-02-14 19:55:17 -05:00

20 lines
226 B
Go

package types
import "html/template"
type FilteredAnswer struct {
ID string
Upvotes string
IsAccepted bool
AuthorName string
AuthorURL string
Timestamp string
Body template.HTML
Comments []FilteredComment
}