bloat/model/post.go

20 lines
308 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
ReplyContext *ReplyContext
2019-12-26 13:25:29 +02:00
Formats []PostFormat
2020-01-12 19:16:57 +02:00
DarkMode bool
}
type ReplyContext struct {
InReplyToID string
InReplyToName string
ReplyContent string
}