2019-12-21 08:36:44 +00:00
|
|
|
package model
|
|
|
|
|
2019-12-26 11:25:29 +00:00
|
|
|
type PostFormat struct {
|
|
|
|
Name string
|
|
|
|
Type string
|
|
|
|
}
|
|
|
|
|
2019-12-21 13:26:31 +00:00
|
|
|
type PostContext struct {
|
|
|
|
DefaultVisibility string
|
|
|
|
ReplyContext *ReplyContext
|
2019-12-26 11:25:29 +00:00
|
|
|
Formats []PostFormat
|
2020-01-12 17:16:57 +00:00
|
|
|
DarkMode bool
|
2019-12-21 13:26:31 +00:00
|
|
|
}
|
|
|
|
|
2019-12-21 08:36:44 +00:00
|
|
|
type ReplyContext struct {
|
|
|
|
InReplyToID string
|
|
|
|
InReplyToName string
|
|
|
|
ReplyContent string
|
|
|
|
}
|