AnonymousOverflow/src/types/comment.go
2022-12-30 18:11:59 -05:00

11 lines
173 B
Go

package types
import "html/template"
type FilteredComment struct {
Text template.HTML
Timestamp string
AuthorName string
AuthorURL string
Upvotes string
}