bloat/model/postContext.go
2019-12-26 11:25:29 +00:00

19 lines
284 B
Go

package model
type PostFormat struct {
Name string
Type string
}
type PostContext struct {
DefaultVisibility string
ReplyContext *ReplyContext
Formats []PostFormat
}
type ReplyContext struct {
InReplyToID string
InReplyToName string
ReplyContent string
}