bloat/model/post.go

24 lines
408 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
2021-09-05 17:17:59 +00:00
QuickReply bool
ReplySpoiler string
ReplyContent string
ForceVisibility bool
2023-11-09 23:34:00 +00:00
ReplyLanguage string
}