mirror of
https://github.com/httpjamesm/AnonymousOverflow.git
synced 2025-06-20 16:10:57 +00:00
13 lines
211 B
Go
13 lines
211 B
Go
|
package types
|
||
|
|
||
|
import "html/template"
|
||
|
|
||
|
type FilteredQuestion struct {
|
||
|
Title string
|
||
|
Body template.HTML
|
||
|
Timestamp string
|
||
|
AuthorName string
|
||
|
AuthorURL string
|
||
|
ShortenedBody string
|
||
|
}
|