bloat/model/post.go

21 lines
338 B
Go
Raw Permalink Normal View History

package model
2019-12-26 11:25:29 +00:00
type PostFormat struct {
Name string
Type string
}
type PostContext struct {
DefaultVisibility string
2020-10-19 06:51:23 +00:00
DefaultFormat string
ReplyContext *ReplyContext
2019-12-26 11:25:29 +00:00
Formats []PostFormat
}
type ReplyContext struct {
InReplyToID string
InReplyToName string
ReplyContent string
ForceVisibility bool
}