bloat/model/post.go

22 lines
360 B
Go
Raw Normal View History

package model
2019-12-26 13:25:29 +02:00
type PostFormat struct {
Name string
Type string
}
type PostContext struct {
DefaultVisibility string
2020-10-19 09:51:23 +03:00
DefaultFormat string
ReplyContext *ReplyContext
2019-12-26 13:25:29 +02:00
Formats []PostFormat
}
type ReplyContext struct {
InReplyToID string
InReplyToName string
2021-09-05 20:17:59 +03:00
QuickReply bool
ReplyContent string
ForceVisibility bool
}