mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 14:43:01 +00:00
21 lines
336 B
Go
21 lines
336 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
|
|
ForceVisibility bool
|
|
}
|