mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-10-31 18:57:16 +00:00
24 lines
408 B
Go
24 lines
408 B
Go
package model
|
|
|
|
type PostFormat struct {
|
|
Name string
|
|
Type string
|
|
}
|
|
|
|
type PostContext struct {
|
|
DefaultVisibility string
|
|
DefaultFormat string
|
|
ReplyContext *ReplyContext
|
|
Formats []PostFormat
|
|
}
|
|
|
|
type ReplyContext struct {
|
|
InReplyToID string
|
|
InReplyToName string
|
|
QuickReply bool
|
|
ReplySpoiler string
|
|
ReplyContent string
|
|
ForceVisibility bool
|
|
ReplyLanguage string
|
|
}
|