bloat/model/post.go
2020-01-28 17:58:29 +00:00

20 lines
308 B
Go

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